pip install autokeras
Collecting autokeras
Using cached https://files.pythonhosted.org/packages/cf/3f/ef52a7654445180ac174b6c159e44261e4fa4161bb28973229845deeedee/autokeras-0.2.0.tar.gz
Collecting torch==0.4.0 (from autokeras)
Could not find a version that satisfies the requirement torch==0.4.0 (from autokeras) (from versions: 0.1.2, 0.1.2.post1)
No matching distribution found for torch==0.4.0 (from autokeras)
Windows 10
Python 3.6.2
Same problem here windows 10
python 3.6.2
is it an issue with torch on windows ?
I'm in the same trouble, so I'm looking for any workaround.
Example:
https://github.com/jhfjhfj1/autokeras/issues/44
I have forked the original library here https://github.com/hiteshn97/autokeras/
Clone it, then python setup.py install
Worked.
@hiteshn97 yes, this worked. I also managed to install it by simply installing torch by myself. Unfortunately it still seems to have problems. The examples aren't working.
Same for me. The working solution was:
Thank you all for the help.
We haven't really tested on Windows, yet.
We will move to torch 0.4.1 in the next release.
I just start from a fresh Python 3.6 install.
Just need to install PyTorch from their website recommandation
IE : For A python, windows, pip configuration :
pip3 install http://download.pytorch.org/whl/cu90/torch-0.4.1-cp36-cp36m-win_amd64.whl
pip3 install torchvision
then a simple
pip install autokeras
works fine
The one suggested by @beepmaster worked for me. Thanks.
I just start from a fresh Python 3.6 install.
Just need to install PyTorch from their website recommandation
IE : For A python, windows, pip configuration :pip3 install http://download.pytorch.org/whl/cu90/torch-0.4.1-cp36-cp36m-win_amd64.whl
pip3 install torchvisionthen a simple
pip install autokeras
works fine
Error :
torch-0.4.1-cp36-cp36m-win_amd64.whl is not supported wheel on this platform
_Please help_
Did you use the pytorch link generator ? Did you try a pip installation ? If so, what is your Python version ?
Did you check your Python environment and pip ?
Actually I right now figured out that new version of python 3.7 is
installed with upgrade in my anaconda upgrade which j didn't knew, so I
downgraded it to 3.6 and it works fine now
But thanks for the help.
On Sun, Dec 16, 2018, 1:11 AM beepmaster notifications@github.com wrote:
Did you use the pytorch link generator ? Did you try a pip installation ?
If so, what is your Python version ?
Did you check your Python environment and pip ?—
You are receiving this because you commented.Reply to this email directly, view it on GitHub
https://github.com/jhfjhfj1/autokeras/issues/41#issuecomment-447592946,
or mute the thread
https://github.com/notifications/unsubscribe-auth/AL0XmY-WFVAIeUiNsewYCEtwCVwH_6Gxks5u5VBvgaJpZM4Vumb8
.>
Regards,
Hemang Joshi
I'm have windows 10 and used python 3.6 in an Anaconda environment.
This worked for me!
Command "pip install autokeras --ignore-installed" successfully worked.
Thanks!
Do you have a setup.py for Windows? I always got into:
ERROR: Could not find a version that satisfies the requirement torch>=1.0.1.post2 (from autokeras) (from versions: 0.1.2, 0.1.2.post1, 0.1.2.post2)
ERROR: No matching distribution found for torch>=1.0.1.post2 (from autokeras)
And torch v 1.0.1.post2 is not for Windows.
However you tried to fix this before, it's broken again.
Most helpful comment
I just start from a fresh Python 3.6 install.
Just need to install PyTorch from their website recommandation
IE : For A python, windows, pip configuration :
pip3 install http://download.pytorch.org/whl/cu90/torch-0.4.1-cp36-cp36m-win_amd64.whl
pip3 install torchvision
then a simple
pip install autokeras
works fine