search for: virtenv

Displaying 3 results from an estimated 3 matches for "virtenv".

2018 Apr 06
4
Semi-OT: install python package in userspace
...Which will explain pip (or > other) attempting to pull dependencies which allegedly are available > system wide already. > > Just speculating, your own research on your particular issue may give > your better answer. <snip> Well, my manager came back, and he's got me using virtenv. Having read about it, I like it. Oh, and the issue with the system numpy in site-packages was that, for some reason, it was *not* world-readable. Fixed that. So, I'm working on trying to install scipy in the virtenv... and for unknown reasons, it simply can't find the system libs. I did...
2018 Apr 06
2
Semi-OT: install python package in userspace
Richard Demeny wrote: > Just sudo it > > On Fri, 6 Apr 2018 17:25 , <m.roth at 5-cent.us> wrote: > >> CentOS 7 box. As there's no package in any of the repos, we're trying to >> install scikit-learn in the user's space. It refuses. My late try was, >> after d/l a .whl from last year, hoping that would work with the numpy >> package in the
2008 Jun 26
2
Installing python eggs using puppet.
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi, I''m looking into using puppet to deploy different python applications to different servers. I want to be able to sandbox the different applications using virtenv. A basic setup would be: 1. create user 2. install the virtual environment for that user - -> as the user: virtualenv /userdir 3. Install package dependencies. - -> as the user: easy_install <mypackage>.egg This should install any dependencies. Is this possible, or should I just host...