PATH persistent problem on a server with Python

0

I try to download Graphlab on a server with the following tutorial . I downloaded it and programmed it with the tools I had wanted to try:

(gl-env)ubuntu@ip-172-hey-hey-hey:~/Eclipse-Stats$ source deactivate
discarding /home/ubuntu/anaconda2/envs/gl-env/bin from PATH
ubuntu@ip-172-hey-hey-hey:~/Eclipse-Stats$ unset PYTHONPATH
ubuntu@ip-172-hey-hey-hey:~/Eclipse-Stats$ python Main.py 
2017-07-27 14:56:00.520425
/home/ubuntu/.local/lib/python2.7/site-packages/sklearn/cross_validation.py:44: DeprecationWarning: This module was deprecated in version 0.18 in favor of the model_selection module into which all the refactored classes and functions are moved. Also note that the interface of the new CV iterators are different from that of this module. This module will be removed in 0.20.
  "This module will be removed in 0.20.", DeprecationWarning)
Traceback (most recent call last):
  File "Main.py", line 3, in <module>
    import prediction
  File "/home/ubuntu/Eclipse-Stats/prediction.py", line 1, in <module>
    from graphlab.toolkits.recommender import ranking_factorization_recommender
ImportError: No module named graphlab.toolkits.recommender

It is possible, according to this conversation , that it is a PATH problem

    
asked by ThePassenger 28.07.2017 в 15:51
source

0 answers