Questions tagged [yolk]

Command-line tool for querying PyPI and Python packages installed on your system.

Command-line tool for querying PyPI and Python packages installed on your system.

14 questions
11
votes
2 answers

virtualenv yolk problem

yolk -l gives me information that I've got 114 packages installed on my Ubuntu 10.04. After creating new virtualenv directory using virtualenv virt_env/virt1 --no-site-packages --clear I switched to that, my prompt changed and then yolk -l gives me…
Szymon Lipiński
  • 27,098
  • 17
  • 75
  • 77
6
votes
3 answers

Syntax error while running "yolk -l"

I have installed yolk 0.4.3 using pip. But when I tried yolk -l to display all installed packages, it showed a syntax error File "C:\Python32\Lib\site-packages\yolk\cli.py" line 262 print "%s %s (%s)" % (project name,dis,version, …
Ashish
  • 81
  • 2
5
votes
1 answer

What does it mean when a package is installed as "non-active development"?

For whatever reason, my build system isn't installing one of my packages properly. When I use yolk (from within a virtualenv), I get the following: bin/yolk -l elig elig - 3.1.2.dev - non-active development…
Jason Baker
  • 192,085
  • 135
  • 376
  • 510
5
votes
1 answer

What does "has no metadata" mean in a yolk package listing?

After setting up a simple virtualenv and installing a few packages, when I yolk -l I get Python - 2.7.5 - active development (/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload) ipython - 1.1.0…
orome
  • 45,163
  • 57
  • 202
  • 418
3
votes
3 answers

Error in gradle in android studio

I was setting up Android studio on windows 7 for the first time and I got this error : Gradle 'MyApplication5' project refresh failed Error:Unexpected lock protocol found in lock file. Expected 3, found 0
3
votes
3 answers

Packages as seen through yolk or pip

I need some help understanding how pip and yolk work I ran pip install pymssql, which installed pymssql version 2.0.0b1-dev-20111019, but then decided that I'd like to revert to an older version. I ran yolk -V pymssql to check which versions I have…
Filipe Correia
  • 5,415
  • 6
  • 32
  • 47
1
vote
1 answer

Place Pip and Yolk inside or outside a virtual environment?

I'm using virtualenv for sandboxing my Python environment, pip to install/uninstall packages and yolk to list the packages. I can install packages to my virtual environment by using pip install -e= and I guess I…
Mridang Agarwalla
  • 43,201
  • 71
  • 221
  • 382
1
vote
0 answers

No module named 'xmlrpclib'

I'm running a python program in Terminal using Python 3.8.2. After running it on a new device, installing requirements (pip3 install requirements.txt), and trying to run (python3 swift-runner.py), I got an error saying "No module named yolk" I…
John
  • 231
  • 2
  • 8
1
vote
1 answer

Easier way to filter search for active or mature PyPI packages with pip or other tool?

PyPI often has so many packages matching a given keyword, that it can be difficult to sort through the riffraff for the one you actually want. For example, pip search kalman returns 13 results, of which most (10 or 11) look promising by the…
argentum2f
  • 4,842
  • 2
  • 25
  • 30
1
vote
1 answer

Yolk crashes when PyPi package descriptions contain certain characters

Yolk (0.8.7) reports and encoding error when printing information about packages. For example, when I yolk -M crypto-enigma I get UnicodeEncodeError: 'ascii' codec can't encode character u'\u03b2' in position 2322: ordinal not in…
orome
  • 45,163
  • 57
  • 202
  • 418
1
vote
1 answer

How do I use yolk from within a python script to get the latest version for a specific package?

I would like something like: yolk.get_lastest_version_number(package_name) which would return a version number. Thanks!
Gil Zellner
  • 889
  • 1
  • 9
  • 20
1
vote
1 answer

How to upgrade yolk to yolk3k in a virtual env?

I have just started using virtualenv from this tutorial, where it uses yolk to list the packages installed in the virtualenv, but yolk by default is for Python 2, so I decided to upgrade with an extension for Python 3, my current version, with the…
nbro
  • 15,395
  • 32
  • 113
  • 196
1
vote
1 answer

virtualenv removing libraries (flask / yolk) on restart

I just started learning Flask (and as a result, getting into virtualenv as well). I followed a tutorial on Flask's documentation and created a small application. I installed Flask and yolk using venv and everything was working fine. I restarted my…
darksky
  • 20,411
  • 61
  • 165
  • 254
0
votes
1 answer

python3 in virtualenv yolk call causes IOError

In ubuntu lucid I have python 2.6.5 by default.I compiled python3.3.1 and set up virtualenv and wrapper such that workon envpy331 gets me to work on python3.3.1.Then I installed yolk using pip Now,when I run >>yolk -l it lists all python libraries…
damon
  • 8,127
  • 17
  • 69
  • 114