A
A
Alexander Kurakin2016-04-04 13:33:09
Python
Alexander Kurakin, 2016-04-04 13:33:09

Project dependency installer for Python 3?

Ruby has the Bundler package , which requires (only) two things to install a project's dependencies:

  • A file containing a list of dependencies,
  • Run once:bundle install
  • Run:bundle exec ruby file.rb

In this case, the dependencies are placed in the project directory, the installation parameters are local to the project.
Is there something similar, but established, for Python 3? I've seen Pundler , what else?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
S
sim3x, 2016-04-04
@kuraga333

$ sudo apt-get install python-dev python-pip virtualenvwrapper
$ mkvirtualenv virtname -p /usr/bin/python3
(virtname) $ pip install -r requirements.txt

inline tagcode

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question