pip install fails on git repository on windows 10How to remove local (untracked) files from the current Git working treeWhat is the difference between 'git pull' and 'git fetch'?How do I undo 'git add' before commit?How do I undo the most recent local commits in Git?How do I check out a remote Git branch?How do I delete a Git branch locally and remotely?How can I determine the URL that a local Git repository was originally cloned from?How do I revert a Git repository to a previous commit?How do I rename a local Git branch?How do I update a GitHub forked repository?
What's the difference between a variable and a memory location?
Group riding etiquette
What does なんだって mean in this case? 「そういう子なんだってだけで...」
Coupling two 15 Amp circuit breaker for 20 Amp
Why did Lucius make a deal out of Buckbeak hurting Draco but not about Draco being turned into a ferret?
Did ancient peoples ever hide their treasure behind puzzles?
Why are JWST optics not enclosed like HST?
Is there a way to tell what frequency I need a PWM to be?
How do Barton (Hawkeye/Ronin) and Romanov (Black Widow) end up on the Benatar on Morag in 2014?
Do application leftovers have any impact on performance?
Scaling arrows.meta with tranform shape
Why is "I let him to sleep" incorrect (or is it)?
How to investigate an unknown 1.5GB file named "sudo" in my Linux home directory?
What is the difference between ?int $number and int $number = null?
Normalized Malbolge to Malbolge translator
Can two aircraft stay on the same runway at the same time?
How could a self contained organic body propel itself in space
Why can't I identify major and minor chords?
In what language did Túrin converse with Mím?
Was a six-engine 747 ever seriously considered by Boeing?
What is this "opened" cube called?
What is a "hard problem" in the context of Mixed-integer programming?
Get contents before a colon
Why do presidential pardons exist in a country having a clear separation of powers?
pip install fails on git repository on windows 10
How to remove local (untracked) files from the current Git working treeWhat is the difference between 'git pull' and 'git fetch'?How do I undo 'git add' before commit?How do I undo the most recent local commits in Git?How do I check out a remote Git branch?How do I delete a Git branch locally and remotely?How can I determine the URL that a local Git repository was originally cloned from?How do I revert a Git repository to a previous commit?How do I rename a local Git branch?How do I update a GitHub forked repository?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I'm trying to install dm_control from github on windows 10.
Direct install from the repository using the command line
pip install git+git://github.com/deepmind/dm_control.git
fails because of ModuleNotFoundError : No module named 'dm_control' on line
from dm_control.autowrap import binding_generator
but the modules clearly exist in the repository structure. I get the same error if I download the repository and pip install from a local directory.
However if I use the editable flag on the local download then the package installs successfully ?
pip install -e C:Downloaddm_control
Can anyone explain what is going on here and how I can directly install from the repository with the first command line call.
git github pip python-import
add a comment |
I'm trying to install dm_control from github on windows 10.
Direct install from the repository using the command line
pip install git+git://github.com/deepmind/dm_control.git
fails because of ModuleNotFoundError : No module named 'dm_control' on line
from dm_control.autowrap import binding_generator
but the modules clearly exist in the repository structure. I get the same error if I download the repository and pip install from a local directory.
However if I use the editable flag on the local download then the package installs successfully ?
pip install -e C:Downloaddm_control
Can anyone explain what is going on here and how I can directly install from the repository with the first command line call.
git github pip python-import
1
It feels like you forgot to show the rest of the output ofpip install git+git://github.com/deepmind/dm_control.git. Can you just show the entire run fromC:whatever> pip install ...to getting back to an empty prompt? Also, what happens if you use pipenv rather than pip? (because its good practice to never install things globally if you can help it and pipenv is a godsend)
– Mike 'Pomax' Kamermans
Mar 28 at 0:17
Well, if -e works locally, it should also work remotely withpip install -e git+git://github.com/deepmind/dm_control.git... right?
– Marc Sances
Mar 29 at 21:47
Unfortunately not ! editable flag does not work from git repository, only when I install from a local directory containing a downloaded copy of the repository
– Marky0
Mar 31 at 16:35
Also same behavior from pipenv
– Marky0
Mar 31 at 16:36
add a comment |
I'm trying to install dm_control from github on windows 10.
Direct install from the repository using the command line
pip install git+git://github.com/deepmind/dm_control.git
fails because of ModuleNotFoundError : No module named 'dm_control' on line
from dm_control.autowrap import binding_generator
but the modules clearly exist in the repository structure. I get the same error if I download the repository and pip install from a local directory.
However if I use the editable flag on the local download then the package installs successfully ?
pip install -e C:Downloaddm_control
Can anyone explain what is going on here and how I can directly install from the repository with the first command line call.
git github pip python-import
I'm trying to install dm_control from github on windows 10.
Direct install from the repository using the command line
pip install git+git://github.com/deepmind/dm_control.git
fails because of ModuleNotFoundError : No module named 'dm_control' on line
from dm_control.autowrap import binding_generator
but the modules clearly exist in the repository structure. I get the same error if I download the repository and pip install from a local directory.
However if I use the editable flag on the local download then the package installs successfully ?
pip install -e C:Downloaddm_control
Can anyone explain what is going on here and how I can directly install from the repository with the first command line call.
git github pip python-import
git github pip python-import
edited Mar 28 at 0:12
phd
30.4k6 gold badges32 silver badges56 bronze badges
30.4k6 gold badges32 silver badges56 bronze badges
asked Mar 27 at 22:00
Marky0Marky0
1,3661 gold badge9 silver badges23 bronze badges
1,3661 gold badge9 silver badges23 bronze badges
1
It feels like you forgot to show the rest of the output ofpip install git+git://github.com/deepmind/dm_control.git. Can you just show the entire run fromC:whatever> pip install ...to getting back to an empty prompt? Also, what happens if you use pipenv rather than pip? (because its good practice to never install things globally if you can help it and pipenv is a godsend)
– Mike 'Pomax' Kamermans
Mar 28 at 0:17
Well, if -e works locally, it should also work remotely withpip install -e git+git://github.com/deepmind/dm_control.git... right?
– Marc Sances
Mar 29 at 21:47
Unfortunately not ! editable flag does not work from git repository, only when I install from a local directory containing a downloaded copy of the repository
– Marky0
Mar 31 at 16:35
Also same behavior from pipenv
– Marky0
Mar 31 at 16:36
add a comment |
1
It feels like you forgot to show the rest of the output ofpip install git+git://github.com/deepmind/dm_control.git. Can you just show the entire run fromC:whatever> pip install ...to getting back to an empty prompt? Also, what happens if you use pipenv rather than pip? (because its good practice to never install things globally if you can help it and pipenv is a godsend)
– Mike 'Pomax' Kamermans
Mar 28 at 0:17
Well, if -e works locally, it should also work remotely withpip install -e git+git://github.com/deepmind/dm_control.git... right?
– Marc Sances
Mar 29 at 21:47
Unfortunately not ! editable flag does not work from git repository, only when I install from a local directory containing a downloaded copy of the repository
– Marky0
Mar 31 at 16:35
Also same behavior from pipenv
– Marky0
Mar 31 at 16:36
1
1
It feels like you forgot to show the rest of the output of
pip install git+git://github.com/deepmind/dm_control.git. Can you just show the entire run from C:whatever> pip install ... to getting back to an empty prompt? Also, what happens if you use pipenv rather than pip? (because its good practice to never install things globally if you can help it and pipenv is a godsend)– Mike 'Pomax' Kamermans
Mar 28 at 0:17
It feels like you forgot to show the rest of the output of
pip install git+git://github.com/deepmind/dm_control.git. Can you just show the entire run from C:whatever> pip install ... to getting back to an empty prompt? Also, what happens if you use pipenv rather than pip? (because its good practice to never install things globally if you can help it and pipenv is a godsend)– Mike 'Pomax' Kamermans
Mar 28 at 0:17
Well, if -e works locally, it should also work remotely with
pip install -e git+git://github.com/deepmind/dm_control.git... right?– Marc Sances
Mar 29 at 21:47
Well, if -e works locally, it should also work remotely with
pip install -e git+git://github.com/deepmind/dm_control.git... right?– Marc Sances
Mar 29 at 21:47
Unfortunately not ! editable flag does not work from git repository, only when I install from a local directory containing a downloaded copy of the repository
– Marky0
Mar 31 at 16:35
Unfortunately not ! editable flag does not work from git repository, only when I install from a local directory containing a downloaded copy of the repository
– Marky0
Mar 31 at 16:35
Also same behavior from pipenv
– Marky0
Mar 31 at 16:36
Also same behavior from pipenv
– Marky0
Mar 31 at 16:36
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55387131%2fpip-install-fails-on-git-repository-on-windows-10%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55387131%2fpip-install-fails-on-git-repository-on-windows-10%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
It feels like you forgot to show the rest of the output of
pip install git+git://github.com/deepmind/dm_control.git. Can you just show the entire run fromC:whatever> pip install ...to getting back to an empty prompt? Also, what happens if you use pipenv rather than pip? (because its good practice to never install things globally if you can help it and pipenv is a godsend)– Mike 'Pomax' Kamermans
Mar 28 at 0:17
Well, if -e works locally, it should also work remotely with
pip install -e git+git://github.com/deepmind/dm_control.git... right?– Marc Sances
Mar 29 at 21:47
Unfortunately not ! editable flag does not work from git repository, only when I install from a local directory containing a downloaded copy of the repository
– Marky0
Mar 31 at 16:35
Also same behavior from pipenv
– Marky0
Mar 31 at 16:36