Posts

Showing posts with the label pip

Setup environment for python developer in windows :)

Hi my friend :)     Sometime I may have a change to develop something in window, this is a guide to get python development up! Actually I just found powershell, interesting!!! http://www.tylerbutler.com/2012/05/how-to-install-python-pip-and-virtualenv-on-windows-with-powershell/ https://pip.pypa.io/en/latest/installing.html

Specific install python package with PIP

If in the past u use package==2.1.1, then the time goes on package go up to 2.2.0 that blow your environment out. Kirit and some docs told me that we should >>> pip install 'package>=2.1,!=2.2.0' as logic said, we won't get package 2.2.0 , surely :)

stuff for web dev#2

http://www.saltycrane.com/blog/2009/05/notes-using-pip-and-virtualenv-django/ http://mojodna.net/2009/05/20/an-idiots-guide-to-oauth-10a.html http://hueniverse.com/oauth/ http://oauth.net/documentation/getting-started/ http://bitbucket.org/jespern/django-piston/wiki/Documentation http://www.thedigitalself.com/exposing-rest-services-with-python-and-django http://beautifulisbetterthanugly.com/posts/2009/jul/23/restful-web-service-using-django-piston/ http://blog.carduner.net/2010/01/26/django-piston-and-oauth/ http://hedgehoglab.com/blog/2008/03/03/django-debug-techniques-and-ipython/ THANK FOR ALL MANKINDS

knowledge from joe

requirements.txt # Use as follows: 'pip install -E -r requirements.txt' # Make sure you have mercurial installed because pip gives you useless error # messages when it's not installed and you think that your links are broken. ## General development environment. docutils==0.5 nose ipython django #-e git+git://github.com/robhudson/django-debug-toolbar.git#egg=django-debug-toolbar NoseDjango BeautifulSoup ## Application specific dependencies. PIL pycrypto http://www.satchmoproject.com/snapshots/trml2pdf-1.2.tar.gz PyYAML http://www.reportlab.org/ftp/ReportLab_2_3.tar.gz -e hg+http://bitbucket.org/bkroeze/django-threaded-multihost/#egg=django-threaded-multihost -e hg+http://bitbucket.org/bkroeze/django-caching-app-plugins/#egg=django-caching-app-plugins -e hg+http://bitbucket.org/bkroeze/django-signals-ahoy/#egg=django-signals-ahoy -e hg+http://bitbucket.org/chris1610/satchmo/@v0.9#egg=satchmo http://geopy.googlecode.com/svn/trunk/ ---------------------------------------- afte...