Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save lachlanagnew/30c4c23f4b14b8345200bb2036629ade to your computer and use it in GitHub Desktop.
Save lachlanagnew/30c4c23f4b14b8345200bb2036629ade to your computer and use it in GitHub Desktop.
//Python 2
$ ls -l /usr/local/lib/python2.*/site-packages/
total 1852
-rw-r--r-- 1 root staff 1895772 Mar 20 20:00 cv2.so
//Get file path and move to global packages
$ cd ~/.virtualenvs/cv/lib/python2.7/site-packages/
$ ln -s /usr/local/lib/python2.7/site-packages/cv2.so cv2.so
//Python 3
$ ls -l /usr/local/lib/python3.*/site-packages/
total 1852
-rw-r--r-- 1 root staff 1895932 Mar 20 21:51 cv2.cpython-35m.so
//rename compiled file
$ cd /usr/local/lib/python3.4/site-packages/
$ sudo mv cv2.cpython-34m.so cv2.so
//Get file path and move to global packages
$ cd ~/.virtualenvs/cv/lib/python3.4/site-packages/
$ ln -s /usr/local/lib/python3.4/site-packages/cv2.so cv2.so
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment