How to clean up my Python Installation for a fresh start

后端 未结 4 490
旧巷少年郎
旧巷少年郎 2021-01-30 11:46

I\'m developing on Snow Leopard and going through the various \"how tos\" to get the MySQLdb package installed and working (uphill battle). Things are a mess and I\'d like to r

4条回答
  •  一向
    一向 (楼主)
    2021-01-30 12:19

    Virtualenv might still work for you. Install it, then create virtual python environments with the --no-site-packages option. This won't clean up your base system, but should allow you to develop in pretty good isolation from the base system.

提交回复
热议问题