You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm having some problems installing pyparty on ubuntu 14.04 with virtual env and pip.
The main problem is that the current pyparty package in pypi has a requirement of a specific version (4.3.0) of traits, that is no longer installable from pypi. I tried to simply install the available version instead (4.5.0) but then I run into another problem. Enthought has changed their import paths so instead of:
fromenthought.traits.apiimport ...
# it is nowfromtraits.apiimport ...
which means that the imports in:
tools/manager.py
trait_types/intornone.py
fails.
From here I went down two different paths. I tried to fix the imports in those two files and I installed the enthought etsproxy module, which is meant to translate the imports.
Both solutions mean that the basic test import:
frompypartyimport*
works BUT if the run the basictest ipython notebook some things fail. More specifically in the block
Hi
I'm having some problems installing pyparty on ubuntu 14.04 with virtual env and pip.
The main problem is that the current pyparty package in pypi has a requirement of a specific version (4.3.0) of traits, that is no longer installable from pypi. I tried to simply install the available version instead (4.5.0) but then I run into another problem. Enthought has changed their import paths so instead of:
which means that the imports in:
tools/manager.py
trait_types/intornone.py
fails.
From here I went down two different paths. I tried to fix the imports in those two files and I installed the enthought etsproxy module, which is meant to translate the imports.
Both solutions mean that the basic test import:
works BUT if the run the basictest ipython notebook some things fail. More specifically in the block
the two
c.background='orange'
lines fails with this traceback:and later in the block:
the call to the lena_who() functions fails with this traceback:
Does anyone has any hints at how to fix this or how to install pyparty with pip in a virtualenv?
Regards Kenneth
The text was updated successfully, but these errors were encountered: