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;








1















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.










share|improve this question





















  • 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












  • 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

















1















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.










share|improve this question





















  • 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












  • 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













1












1








1








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.










share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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 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











  • 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





    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











  • 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












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
);



);













draft saved

draft discarded


















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.



















draft saved

draft discarded
















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

용인 삼성생명 블루밍스 목차 통계 역대 감독 선수단 응원단 경기장 같이 보기 외부 링크 둘러보기 메뉴samsungblueminx.comeh선수 명단용인 삼성생명 블루밍스용인 삼성생명 블루밍스ehsamsungblueminx.comeheheheh

155 수학 과학 기타 둘러보기 메뉴eh추가해eh문서를 완성해