Question
Nginx will not uninstall from my server?
It seems like something is wrong with my python. I tried installing an upload module for nginx and it wasnt working so I decided to remove it and then re install it.
I posted on stackoverflow http://stackoverflow.com/questions/25588017/cant-remove-nginx?noredirect=1#comment39966807_25588017
The error I get when trying to remove is
sudo apt-get autoremove nginx
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages will be REMOVED:
nginx
0 upgraded, 0 newly installed, 1 to remove and 60 not upgraded.
3 not fully installed or removed.
After this operation, 87.0 kB disk space will be freed.
Do you want to continue [Y/n]? Y
Setting up python2.7-minimal (2.7.3-0ubuntu3.5) ...
Traceback (most recent call last):
File "/usr/local/lib/python2.7/site.py", line 562, in <module>
main()
File "/usr/local/lib/python2.7/site.py", line 544, in main
known_paths = addusersitepackages(known_paths)
File "/usr/local/lib/python2.7/site.py", line 271, in addusersitepackages
user_site = getusersitepackages()
File "/usr/local/lib/python2.7/site.py", line 246, in getusersitepackages
user_base = getuserbase() # this will also set USER_BASE
File "/usr/local/lib/python2.7/site.py", line 236, in getuserbase
USER_BASE = get_config_var('userbase')
File "/usr/local/lib/python2.7/sysconfig.py", line 577, in get_config_var
return get_config_vars().get(name)
File "/usr/local/lib/python2.7/sysconfig.py", line 476, in get_config_vars
_init_posix(_CONFIG_VARS)
File "/usr/local/lib/python2.7/sysconfig.py", line 355, in _init_posix
raise IOError(msg)
IOError: invalid Python installation: unable to open /usr/local/include/python2.7/pyconfig.h (No such file or directory)
dpkg: error processing python2.7-minimal (--configure):
subprocess installed post-installation script returned error exit status 1
Errors were encountered while processing:
python2.7-minimal
' in directory '/etc/apt/sources.list.d/' as it has an invalid filename extension
' in directory '/etc/apt/sources.list.d/' as it has an invalid filename extension
' in directory '/etc/apt/sources.list.d/' as it has an invalid filename extension
E: Sub-process /usr/bin/dpkg returned an error code (1)
I get the same thing when trying to remove python
I deleted the /etc/nginx/ folder manually like an idiot. I dont want to have to destroy my dropplet.
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×
Your python installation is a mess.
I do wonder if you gracefully stopped nginx before removing it. You can do this using the “service” command.
Next time compile a full version of python and instead of installing libraries to the system, use virtual environments.