Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

running install_lib warning: install_lib: 'build\lib' does not exist -- no Python modules to install

Tags:

python

c:\Python33>python.exe D:\program_python\module_setup\setups.py install
running install
running build
running build_py
running install_lib
**warning: install_lib: 'build\lib' does not exist -- no Python modules to in**


running install_egg_info
Removing c:\Python33\Lib\site-packages\find_elements_of_list-3.3.3-py3.3.eg
o
Writing c:\Python33\Lib\site-packages\find_elements_of_list-3.3.3-py3.3.egg

I am getting this error ( is in bold ) can you suggest ( when I am using window 8 -32 bit o/s with python33 as well as when using Red Hat Linux-6 with python 2.6 )

c:\Python33>update modules list
'update' is not recognized as an internal or external command,
operable program or batch file.
like image 594
monali Avatar asked Aug 17 '14 08:08

monali


1 Answers

You need to change into the directory of the application and then run the file.

c:\Python33>cd D:\program_python\module_setup
c:\Python33>cd D:
D:\program_python\module_setup> C:\Python33\python.exe setup.py install
like image 116
Burhan Khalid Avatar answered Sep 20 '22 15:09

Burhan Khalid