python - Remove symbolic link to development version -
on pandas developers page says describes how work development version of pandas.
it mentions python setup.py develop
allow use development environment:
this makes symbolic link tells python interpreter import pandas development directory. thus, can using development version on system without being inside clone directory.
it doesn't symbolic link created, nor mention how "undo" operation. had quick in setup.py
couldn't find symbolic link created.
so if run python setup.py develop
how can using release version of pandas?
you can remove symlink created using python setup.py develop
via:
python setup.py develop --uninstall
as symlink itself, it's not strictly symlink rather normal file .egg-link
extension. created in site-packages
folder of python installation used run python setup.py develop
. using virtualenv named my_test_virtualenv, mine created @ /home/chuck/.virtualenvs/my_test_virtualenv/lib/python2.7/site-packages/pandas.egg-link
. file contains single line - path cloned pandas repo.
Comments
Post a Comment