Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

"no matches found: gfootball[tf_cpu]" - possible problem with Conda environment? #20

Closed
GaurangTandon opened this issue Jun 19, 2019 · 3 comments

Comments

@GaurangTandon
Copy link

GaurangTandon commented Jun 19, 2019

Hi, I was just trying out the repo, and I got stuck at a simple point. Could someone please help me figure the problem out? I did the following:

  1. Do step 1 from under Installation. This prompted me to do sudo dpkg --configure -a which I did first, and then did that sudo apt install.

  2. That works, then since we are installing python packages, I thought it to be a good idea to create a new environment for step 2. So, I did:

    conda create -n googlefootball python=3.7 anaconda
    conda activate googlefootball
    
  3. Finally I did the step 2, pip3 install gfootball[tf_cpu] --process-dependency-link. But it gives this error:

    zsh: no matches found: gfootball[tf_cpu]
    

Where did I do wrong? Am I not supposed to use conda environments for this? Thanks!

@cyfra
Copy link

cyfra commented Jun 19, 2019

This seems to be related to zsh (we usually use bash :-)

Try adding quotes:
pip3 install "gfootball[tf_cpu]" --process-dependency-link

@GaurangTandon
Copy link
Author

Ah, but now on changing that I get a new error :P

Usage:   
  /home/gt/anaconda3/envs/googlefootball/bin/python3.7 -m pip install [options] <requirement specifier> [package-index-options] ...
  /home/gt/anaconda3/envs/googlefootball/bin/python3.7 -m pip install [options] -r <requirements file> [package-index-options] ...
  /home/gt/anaconda3/envs/googlefootball/bin/python3.7 -m pip install [options] [-e] <vcs project url> ...
  /home/gt/anaconda3/envs/googlefootball/bin/python3.7 -m pip install [options] [-e] <local project path> ...
  /home/gt/anaconda3/envs/googlefootball/bin/python3.7 -m pip install [options] <archive url/path> ...

no such option: --process-dependency-link

@gumush
Copy link

gumush commented Jun 20, 2019

It's about version of PIP , 18.01 version works with --process-dependency-link.
You can downgrade

pip install --upgrade pip==18.01

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants