美文网首页
Install FCIS without root access

Install FCIS without root access

作者: Reyuwei | 来源:发表于2018-03-05 21:24 被阅读19次
$ tar -xvjf Python-2.7.5.tar.bz2
$ cd python-2.7.5.bar.bz2
$ ./configure --prefix=/home/username/pyhton27
$ make
$ make install
  • Add current folder to PYTHONPATH
$ export PYTHONPATH=/home/username/python27/lib/python2.7/site-packages

** Remember to add every time when opening a new shell **

  • Bind mxnet with local python
$ cd mxnet/python
$ python setup.py install --prefix=/home/user/python27
  • Install other missing modules, like hickle

    Download source hickle-2.1.0.tar.gz from official website

$ unzip 
$ cd
$ python setup.py install --prefix=/home/liyuw/python27

All set!!

相关文章

网友评论

      本文标题:Install FCIS without root access

      本文链接:https://www.haomeiwen.com/subject/zsexfftx.html