Install FCIS without root access

  • Follow the instructions on https://github.com/msracver/FCIS till 3.3
  • Download python-2.7.5.tar.bz2
  • Unzip to local folder /home/username/FCIS
$ 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)