On Tue, Apr 26, 2011 at 09:36, darklow <[email protected]> wrote: > Thanks, let me know if you have any ideas, how to fix the problem...
Eh... As usual, right now I'm really busy. :-( > I looked at virtualenv documentation, i didn't understand how to use it, Ok, let's try: - download virtualenv from http://pypi.python.org/pypi/virtualenv#downloads - tar xvfz virtualenv-1.6.tar.gz - cd virtualenv-1.6 - python virtualenv.py --no-site-packages ~/myvenv - cd ~/myvenv - . ./bin/activate # notice the initial dot - pip install formencode # bug with the dependencies. :( - pip install IMDbPY # or download from the Mercurial repository and run 'python setup.py install' The most important step is the activation of the virtualenv: your prompt should change to something like "(myvenv)$" to denote that your virtualenv is active. Now, always from inside the virtualenv, you can run the imdbpy2sql.py script: everything was installed locally to your ~/myvenv/ directory (the local python interpreter is in ~/myvenv/bin/python). If you need to deactivate the virtualenv, simply run the deactivate command. HTH, -- Davide Alberani <[email protected]> [PGP KeyID: 0x465BFD47] http://www.mimante.net/ ------------------------------------------------------------------------------ WhatsUp Gold - Download Free Network Management Software The most intuitive, comprehensive, and cost-effective network management toolset available today. Delivers lowest initial acquisition cost and overall TCO of any competing solution. http://p.sf.net/sfu/whatsupgold-sd _______________________________________________ Imdbpy-help mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/imdbpy-help
