AP257
AP257

Reputation: 94013

Pylons: accidentally typed 'setup.py install', how can I fix?

While working on a Pylons app, I accidentally typed

python setup.py install

in the home directory of a project, instead of what I meant to type, namely

python setup.py egg_info

Oops. It looks like the Pylons app has now been installed as a Python package. Whenever I make changes to the project, they don't get propagated unless I re-run install, which is annoying.

How can I fix this?

Upvotes: 3

Views: 157

Answers (1)

shahjapan
shahjapan

Reputation: 14373

delete the related content from the dist-packages/site-packages and .egg info files manually

Upvotes: 2

Related Questions