Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Python: Where is freeze.py?

Tags:

python

Anyone know where freeze.py is installed for 2.6.5? I can't seem to find it anywhere. Did it get pulled out and replaced with something else?

like image 994
waffleman Avatar asked Oct 25 '10 16:10

waffleman


2 Answers

It's where it's always been, under Tools/ in the source distribution.

like image 112
Ignacio Vazquez-Abrams Avatar answered Oct 08 '22 00:10

Ignacio Vazquez-Abrams


use in linux command locate freeze.py

root@root:/usr/lib/python2.7$ locate freeze.py
/usr/lib/python2.7/dist-packages/pip/commands/freeze.py
/usr/lib/python2.7/dist-packages/pip/commands/freeze.pyc
/usr/lib/python2.7/dist-packages/pip/operations/freeze.py
/usr/lib/python2.7/dist-packages/pip/operations/freeze.pyc
/usr/local/lib/python2.7/dist-packages/pip/commands/freeze.py
/usr/local/lib/python2.7/dist-packages/pip/commands/freeze.pyc
/usr/local/lib/python2.7/dist-packages/pip/operations/freeze.py
/usr/local/lib/python2.7/dist-packages/pip/operations/freeze.pyc
/usr/share/king-phisher/tools/cx_freeze.py
like image 20
Noredine Bahri Avatar answered Oct 08 '22 00:10

Noredine Bahri