Page MenuHomePhabricator

Install "internetarchive" python module
Closed, DeclinedPublic

Description

I think https://pypi.python.org/pypi/internetarchive would be useful to many, in Tools. BUB uses it, for instance.

Event Timeline

Nemo_bis raised the priority of this task from to Needs Triage.
Nemo_bis updated the task description. (Show Details)
Nemo_bis added a project: Toolforge.
Nemo_bis subscribed.

I think we should reduce the amount of self-built python packages installed on toollabs (see T91874). Using a virtualenv should be the preferred solution.

Well I trust whatever is your recommendation on the process to follow, I just filed this task as suggested by https://wikitech.wikimedia.org/wiki/Help:Tool_Labs . Please update docs with whatever method is preferred, I'm quite clueless about it.

I don't understand, was the package actually installed?

yuvipanda changed the task status from Resolved to Declined.Jun 3 2015, 4:49 PM

That's better :)

@yuvipanda Nemos problem is actually that trusty has no pip installed (precise had): https://wikitech.wikimedia.org/wiki/Help_talk:Tool_Labs/Python_application_stub

(virtualenv may be a bit overwhelming for users which only need pip install --user somepackage

@Nemo_bis Yuvi is basically asking you to run:

virtualenv ~/env
source $HOME/env/bin/activate
echo "source $HOME/env/bin/activate" >> .bashrc
pip install internetarchive

Thanks both.

@Nemo_bis Yuvi is basically asking you to run:

virtualenv ~/env
source $HOME/env/bin/activate
echo "source $HOME/env/bin/activate" >> .bashrc
pip install internetarchive

Can you add to the help page, please? As for myself, I've solved using easy_install --user; but people often need a quick way to import an additional package or two.