I'm new to Slackware and to Python in general. When I'm trying to install a Python module from its source via command
python setup.py build
python setup.py install
It only creates a .egg
file in /usr/lib64/python2.7/site-packages
location, but not a directory with content of Python module.
I'm asking that because my task is to install Python modules from source without internet connection, so I can't use tools like easy_install or pip to automatically download and install needed python module.
So how do I properly install a Python module from source on Slackware 14.2 OS?