No matching distribution found for tf-nightly when installing tensorflowjspip install mysql-python fails with EnvironmentError: mysql_config not foundinstalling ipython hash errorPip not working - ModuleNotFoundError: No module named 'runpy'Unable to pip install in Docker image as agent through Jenkins declarative pipelineTrying to install wptools in my Anaconda enviroment to use in Jupyterpip install failed on 'Temporary failure in name resolution' inspite we install local pkgpip install pandas failed because of environment errorxgboost-…whl is not supported wheel in this platformUnable to install “screen” package pythoncant import sendgrid after pip installing it
Can the Mage Hand cantrip be used to trip an enemy who is running away?
Is it possible to create a craft with specific bones, like the bones of a forgotten beast?
Fast validation of time windows in a routing problem
Why do we need common sense in AI?
What is this little owl-like bird?
Does Multiverse exist in MCU?
Are there any medieval light sources without fire?
How can a dictatorship government be beneficial to a dictator in a post-scarcity society?
Managing and organizing the massively increased number of classes after switching to SOLID?
Single word for "refusing to move to next activity unless present one is completed."
Why is the ladder of the LM always in the dark side of the LM?
How are mathematicians paid to do research?
Why would non-kinetic weapons be used for orbital bombardment?
Would a non-attacking Barbarian's rage end the same turn he started it?
Indesign - how to change the style of the page numbers?
What does the phrase "head down the rat's hole" mean here?
RPI3B+: What are the four components below the HDMI connector called?
Swapping "Good" and "Bad"
What's the point of having a RAID 1 configuration over incremental backups to a secondary drive?
Do I have a right to cancel a purchase of foreign currency in the UK?
Why isn't pressure filtration popular compared to vacuum filtration?
Credit score and financing new car
How to know if blackberries are safe to eat
Why doesn't sea level show seasonality?
No matching distribution found for tf-nightly when installing tensorflowjs
pip install mysql-python fails with EnvironmentError: mysql_config not foundinstalling ipython hash errorPip not working - ModuleNotFoundError: No module named 'runpy'Unable to pip install in Docker image as agent through Jenkins declarative pipelineTrying to install wptools in my Anaconda enviroment to use in Jupyterpip install failed on 'Temporary failure in name resolution' inspite we install local pkgpip install pandas failed because of environment errorxgboost-…whl is not supported wheel in this platformUnable to install “screen” package pythoncant import sendgrid after pip installing it
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I am trying to install tensorflowjs on my virtual environment, but am getting the following error:
Could not find a version that satisfies the requirement tf-nightly-2.0-preview>=2.0.0.dev20190304 (from tensorflowjs) (from versions: )
No matching distribution found for tf-nightly-2.0-preview>=2.0.0.dev20190304 (from tensorflowjs)
I have tried upgrading pip and creating the virtual environment with both virtualenv and venv, and installing it with and without the option --no-cache-dir.
To reproduce the error, I do the following:
python3 -m venv .env
source .env/bin/activate
pip install tensorflowjs
This results in the output:
Collecting tensorflowjs
Downloading https://files.pythonhosted.org/packages/79/29/35e1aa467436ff46b98df65a08c49faaedb3429e1c512d1d90fe308040a0/tensorflowjs-1.0.1-py3-none-any.whl
Collecting tensorflow-hub==0.3.0 (from tensorflowjs)
Downloading https://files.pythonhosted.org/packages/9e/f0/3a3ced04c8359e562f1b91918d9bde797c8a916fcfeddc8dc5d673d1be20/tensorflow_hub-0.3.0-py2.py3-none-any.whl (73kB)
100% |████████████████████████████████| 81kB 7.6MB/s
Collecting numpy==1.15.1 (from tensorflowjs)
Downloading https://files.pythonhosted.org/packages/d4/fd/6c1c98862f78b1aacd8d81811900ddd5cbe34a6ed168e8f84e4df7cac30f/numpy-1.15.1-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (24.5MB)
100% |████████████████████████████████| 24.5MB 39.6MB/s
Collecting h5py==2.8.0 (from tensorflowjs)
Downloading https://files.pythonhosted.org/packages/2a/13/d3fb885ff877578e0fddd8c71e1ed9e22207cec8469c0ef1e483ab5ca0d3/h5py-2.8.0-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (6.0MB)
100% |████████████████████████████████| 6.1MB 42.3MB/s
Collecting keras==2.2.4 (from tensorflowjs)
Downloading https://files.pythonhosted.org/packages/5e/10/aa32dad071ce52b5502266b5c659451cfd6ffcbf14e6c8c4f16c0ff5aaab/Keras-2.2.4-py2.py3-none-any.whl (312kB)
100% |████████████████████████████████| 317kB 44.3MB/s
Collecting six==1.11.0 (from tensorflowjs)
Downloading https://files.pythonhosted.org/packages/67/4b/141a581104b1f6397bfa78ac9d43d8ad29a7ca43ea90a2d863fe3056e86a/six-1.11.0-py2.py3-none-any.whl
Collecting tf-nightly-2.0-preview>=2.0.0.dev20190304 (from tensorflowjs)
Could not find a version that satisfies the requirement tf-nightly-2.0-preview>=2.0.0.dev20190304 (from tensorflowjs) (from versions: )
No matching distribution found for tf-nightly-2.0-preview>=2.0.0.dev20190304 (from tensorflowjs)
I am using Python 3.7.2, pip 19.0.3, on a macOS 10.13.6.
pip tensorflowjs-converter
add a comment |
I am trying to install tensorflowjs on my virtual environment, but am getting the following error:
Could not find a version that satisfies the requirement tf-nightly-2.0-preview>=2.0.0.dev20190304 (from tensorflowjs) (from versions: )
No matching distribution found for tf-nightly-2.0-preview>=2.0.0.dev20190304 (from tensorflowjs)
I have tried upgrading pip and creating the virtual environment with both virtualenv and venv, and installing it with and without the option --no-cache-dir.
To reproduce the error, I do the following:
python3 -m venv .env
source .env/bin/activate
pip install tensorflowjs
This results in the output:
Collecting tensorflowjs
Downloading https://files.pythonhosted.org/packages/79/29/35e1aa467436ff46b98df65a08c49faaedb3429e1c512d1d90fe308040a0/tensorflowjs-1.0.1-py3-none-any.whl
Collecting tensorflow-hub==0.3.0 (from tensorflowjs)
Downloading https://files.pythonhosted.org/packages/9e/f0/3a3ced04c8359e562f1b91918d9bde797c8a916fcfeddc8dc5d673d1be20/tensorflow_hub-0.3.0-py2.py3-none-any.whl (73kB)
100% |████████████████████████████████| 81kB 7.6MB/s
Collecting numpy==1.15.1 (from tensorflowjs)
Downloading https://files.pythonhosted.org/packages/d4/fd/6c1c98862f78b1aacd8d81811900ddd5cbe34a6ed168e8f84e4df7cac30f/numpy-1.15.1-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (24.5MB)
100% |████████████████████████████████| 24.5MB 39.6MB/s
Collecting h5py==2.8.0 (from tensorflowjs)
Downloading https://files.pythonhosted.org/packages/2a/13/d3fb885ff877578e0fddd8c71e1ed9e22207cec8469c0ef1e483ab5ca0d3/h5py-2.8.0-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (6.0MB)
100% |████████████████████████████████| 6.1MB 42.3MB/s
Collecting keras==2.2.4 (from tensorflowjs)
Downloading https://files.pythonhosted.org/packages/5e/10/aa32dad071ce52b5502266b5c659451cfd6ffcbf14e6c8c4f16c0ff5aaab/Keras-2.2.4-py2.py3-none-any.whl (312kB)
100% |████████████████████████████████| 317kB 44.3MB/s
Collecting six==1.11.0 (from tensorflowjs)
Downloading https://files.pythonhosted.org/packages/67/4b/141a581104b1f6397bfa78ac9d43d8ad29a7ca43ea90a2d863fe3056e86a/six-1.11.0-py2.py3-none-any.whl
Collecting tf-nightly-2.0-preview>=2.0.0.dev20190304 (from tensorflowjs)
Could not find a version that satisfies the requirement tf-nightly-2.0-preview>=2.0.0.dev20190304 (from tensorflowjs) (from versions: )
No matching distribution found for tf-nightly-2.0-preview>=2.0.0.dev20190304 (from tensorflowjs)
I am using Python 3.7.2, pip 19.0.3, on a macOS 10.13.6.
pip tensorflowjs-converter
add a comment |
I am trying to install tensorflowjs on my virtual environment, but am getting the following error:
Could not find a version that satisfies the requirement tf-nightly-2.0-preview>=2.0.0.dev20190304 (from tensorflowjs) (from versions: )
No matching distribution found for tf-nightly-2.0-preview>=2.0.0.dev20190304 (from tensorflowjs)
I have tried upgrading pip and creating the virtual environment with both virtualenv and venv, and installing it with and without the option --no-cache-dir.
To reproduce the error, I do the following:
python3 -m venv .env
source .env/bin/activate
pip install tensorflowjs
This results in the output:
Collecting tensorflowjs
Downloading https://files.pythonhosted.org/packages/79/29/35e1aa467436ff46b98df65a08c49faaedb3429e1c512d1d90fe308040a0/tensorflowjs-1.0.1-py3-none-any.whl
Collecting tensorflow-hub==0.3.0 (from tensorflowjs)
Downloading https://files.pythonhosted.org/packages/9e/f0/3a3ced04c8359e562f1b91918d9bde797c8a916fcfeddc8dc5d673d1be20/tensorflow_hub-0.3.0-py2.py3-none-any.whl (73kB)
100% |████████████████████████████████| 81kB 7.6MB/s
Collecting numpy==1.15.1 (from tensorflowjs)
Downloading https://files.pythonhosted.org/packages/d4/fd/6c1c98862f78b1aacd8d81811900ddd5cbe34a6ed168e8f84e4df7cac30f/numpy-1.15.1-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (24.5MB)
100% |████████████████████████████████| 24.5MB 39.6MB/s
Collecting h5py==2.8.0 (from tensorflowjs)
Downloading https://files.pythonhosted.org/packages/2a/13/d3fb885ff877578e0fddd8c71e1ed9e22207cec8469c0ef1e483ab5ca0d3/h5py-2.8.0-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (6.0MB)
100% |████████████████████████████████| 6.1MB 42.3MB/s
Collecting keras==2.2.4 (from tensorflowjs)
Downloading https://files.pythonhosted.org/packages/5e/10/aa32dad071ce52b5502266b5c659451cfd6ffcbf14e6c8c4f16c0ff5aaab/Keras-2.2.4-py2.py3-none-any.whl (312kB)
100% |████████████████████████████████| 317kB 44.3MB/s
Collecting six==1.11.0 (from tensorflowjs)
Downloading https://files.pythonhosted.org/packages/67/4b/141a581104b1f6397bfa78ac9d43d8ad29a7ca43ea90a2d863fe3056e86a/six-1.11.0-py2.py3-none-any.whl
Collecting tf-nightly-2.0-preview>=2.0.0.dev20190304 (from tensorflowjs)
Could not find a version that satisfies the requirement tf-nightly-2.0-preview>=2.0.0.dev20190304 (from tensorflowjs) (from versions: )
No matching distribution found for tf-nightly-2.0-preview>=2.0.0.dev20190304 (from tensorflowjs)
I am using Python 3.7.2, pip 19.0.3, on a macOS 10.13.6.
pip tensorflowjs-converter
I am trying to install tensorflowjs on my virtual environment, but am getting the following error:
Could not find a version that satisfies the requirement tf-nightly-2.0-preview>=2.0.0.dev20190304 (from tensorflowjs) (from versions: )
No matching distribution found for tf-nightly-2.0-preview>=2.0.0.dev20190304 (from tensorflowjs)
I have tried upgrading pip and creating the virtual environment with both virtualenv and venv, and installing it with and without the option --no-cache-dir.
To reproduce the error, I do the following:
python3 -m venv .env
source .env/bin/activate
pip install tensorflowjs
This results in the output:
Collecting tensorflowjs
Downloading https://files.pythonhosted.org/packages/79/29/35e1aa467436ff46b98df65a08c49faaedb3429e1c512d1d90fe308040a0/tensorflowjs-1.0.1-py3-none-any.whl
Collecting tensorflow-hub==0.3.0 (from tensorflowjs)
Downloading https://files.pythonhosted.org/packages/9e/f0/3a3ced04c8359e562f1b91918d9bde797c8a916fcfeddc8dc5d673d1be20/tensorflow_hub-0.3.0-py2.py3-none-any.whl (73kB)
100% |████████████████████████████████| 81kB 7.6MB/s
Collecting numpy==1.15.1 (from tensorflowjs)
Downloading https://files.pythonhosted.org/packages/d4/fd/6c1c98862f78b1aacd8d81811900ddd5cbe34a6ed168e8f84e4df7cac30f/numpy-1.15.1-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (24.5MB)
100% |████████████████████████████████| 24.5MB 39.6MB/s
Collecting h5py==2.8.0 (from tensorflowjs)
Downloading https://files.pythonhosted.org/packages/2a/13/d3fb885ff877578e0fddd8c71e1ed9e22207cec8469c0ef1e483ab5ca0d3/h5py-2.8.0-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (6.0MB)
100% |████████████████████████████████| 6.1MB 42.3MB/s
Collecting keras==2.2.4 (from tensorflowjs)
Downloading https://files.pythonhosted.org/packages/5e/10/aa32dad071ce52b5502266b5c659451cfd6ffcbf14e6c8c4f16c0ff5aaab/Keras-2.2.4-py2.py3-none-any.whl (312kB)
100% |████████████████████████████████| 317kB 44.3MB/s
Collecting six==1.11.0 (from tensorflowjs)
Downloading https://files.pythonhosted.org/packages/67/4b/141a581104b1f6397bfa78ac9d43d8ad29a7ca43ea90a2d863fe3056e86a/six-1.11.0-py2.py3-none-any.whl
Collecting tf-nightly-2.0-preview>=2.0.0.dev20190304 (from tensorflowjs)
Could not find a version that satisfies the requirement tf-nightly-2.0-preview>=2.0.0.dev20190304 (from tensorflowjs) (from versions: )
No matching distribution found for tf-nightly-2.0-preview>=2.0.0.dev20190304 (from tensorflowjs)
I am using Python 3.7.2, pip 19.0.3, on a macOS 10.13.6.
pip tensorflowjs-converter
pip tensorflowjs-converter
asked Mar 26 at 1:35
student1868student1868
268 bronze badges
268 bronze badges
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
tf-nightly-2.0-preview releases binaries for MacOS only for Python 2.7 and 3.6.
1
saved me a lifetime. For those struggling just downgrade to python 3.6
– Ren44
Apr 21 at 2:16
add a comment |
I ran into the same issue and only had success with python 3.6, give that a try if you can.
add a comment |
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%2f55348654%2fno-matching-distribution-found-for-tf-nightly-when-installing-tensorflowjs%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
tf-nightly-2.0-preview releases binaries for MacOS only for Python 2.7 and 3.6.
1
saved me a lifetime. For those struggling just downgrade to python 3.6
– Ren44
Apr 21 at 2:16
add a comment |
tf-nightly-2.0-preview releases binaries for MacOS only for Python 2.7 and 3.6.
1
saved me a lifetime. For those struggling just downgrade to python 3.6
– Ren44
Apr 21 at 2:16
add a comment |
tf-nightly-2.0-preview releases binaries for MacOS only for Python 2.7 and 3.6.
tf-nightly-2.0-preview releases binaries for MacOS only for Python 2.7 and 3.6.
answered Mar 26 at 10:34
phdphd
28.2k6 gold badges31 silver badges54 bronze badges
28.2k6 gold badges31 silver badges54 bronze badges
1
saved me a lifetime. For those struggling just downgrade to python 3.6
– Ren44
Apr 21 at 2:16
add a comment |
1
saved me a lifetime. For those struggling just downgrade to python 3.6
– Ren44
Apr 21 at 2:16
1
1
saved me a lifetime. For those struggling just downgrade to python 3.6
– Ren44
Apr 21 at 2:16
saved me a lifetime. For those struggling just downgrade to python 3.6
– Ren44
Apr 21 at 2:16
add a comment |
I ran into the same issue and only had success with python 3.6, give that a try if you can.
add a comment |
I ran into the same issue and only had success with python 3.6, give that a try if you can.
add a comment |
I ran into the same issue and only had success with python 3.6, give that a try if you can.
I ran into the same issue and only had success with python 3.6, give that a try if you can.
answered Mar 26 at 9:44
BMcFadyenBMcFadyen
981 silver badge5 bronze badges
981 silver badge5 bronze badges
add a comment |
add a comment |
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%2f55348654%2fno-matching-distribution-found-for-tf-nightly-when-installing-tensorflowjs%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