UNM-CARC / QuickBytes

Development of short tutorials for UNM's Center for Advanced Research Computing
20 stars 16 forks source link

Update Install deep learning packages.md #110

Closed ktagen-sudo closed 3 years ago

ktagen-sudo commented 3 years ago

I changed "conda create --name python==3.6" to " conda create --name python'>3.6,<3.9' " . Because it seems that the python version 3.6 is no longer available on Xena and it is suggested on the pytorch documentation to have either python version 3.6, 3.7 or 3.8. The pytorch link is below https://pytorch.org/get-started/locally/

gmfricke commented 3 years ago

@ktagen-sudo the python version specified will be installed by conda and does not have to already exist on Xena. Did you get an error when you tried? If so let's talk about it on slack.

gmfricke commented 3 years ago

@ktagen-sudo I think the error you found it that it should be "=" not "=="

ktagen-sudo commented 3 years ago

Dr. Fricke, you're right. Like you said the error is "=" instead of "==". There is no need to do " >3.6,<3.9 " .

gmfricke commented 3 years ago

Dr. Fricke, you're right. Like you said the error is "=" instead of "==". There is no need to do " >3.6,<3.9 " .

Could you modify the pull request to change == to =? Thanks :)