Skip to content

Commit

Permalink
fix 2023-12-05-x86_64-binaries-on-m1.md
Browse files Browse the repository at this point in the history
  • Loading branch information
isotopp committed Dec 7, 2023
1 parent afdd85a commit dccad9d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions content/posts/2023-12-05-x86_64-binaries-on-m1.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,14 +164,14 @@ Installing collected packages: cx-Oracle
Successfully installed cx-Oracle-7.3.0
```

Note that this will still need an `ORA_HOME` pointing to your instantclient directory,
Note that this will still need an `ORACLE_HOME` pointing to your instantclient directory,
and the `dylib` files linked from the Python libdir to the instantclient installation.

So:

```
$ ORA_HOME=~/instantclient*
$ echo "export ORA_HOME=$ORA_HOME" >> ~/.bash_profile
$ ORACLE_HOME=~/instantclient*
$ echo "export ORACLE_HOME=$ORACLE_HOME" >> ~/.bash_profile
$ cd ~/.pyenv/versions/2.7.18/lib
$ for i in ~/instantclient*/*.dylib*;
Expand Down

0 comments on commit dccad9d

Please sign in to comment.