Skip to content Skip to sidebar Skip to footer

Can't Install New Python Module [ubuntu 15.10]

Im so new to ubuntu and still trying to learn it. I've installed several modules such as numpy, scipy without a problem because they can be installed via easy_install or pip comman

Solution 1:

follow these steps :

  • git clone https://github.com/breuleux/bugland.git
  • sudo mv bugland/bugland /usr/local/lib/python2.7/site-packages/ (or python3)

then you can import all modules in your python apps

from bugland import bug

Post a Comment for "Can't Install New Python Module [ubuntu 15.10]"