Skip to content Skip to sidebar Skip to footer

Cannot Import 3rd Party Packages

I am running python 2.7.5 on OS X 10.9.4 . Whenever I install a package it installs to: /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages I installed py

Solution 1:

You may be able to modify the python search path:

import sys
sys.path.append('/System/Library/Frameworks/Python.framework/Versions/2.7/python/site-packages')

import py2neo

Post a Comment for "Cannot Import 3rd Party Packages"