installation help (tools.py and reduction.py syntax errors) #316
Unanswered
olagarde
asked this question in
Troubleshooting
Replies: 3 comments
-
Python 2.7 is no longer supported by current PyCUDA. According to the package index, version 2020.1 is the last version to support 2.7: https://pypi.org/project/pycuda/2020.1/ |
Beta Was this translation helpful? Give feedback.
0 replies
-
Sorry, lost here ... that url says 2020.1 requires python ~=3.6 not 2.7,
building 2020.1 or 2021.1 with 3.8.6 thows an error to the effect that
it requires >3.7, and the wiki says 2021.1 requires 2.4 ... who's on first?
…On 11/2/21 5:33 PM, Andreas Klöckner wrote:
Python 2.7 is no longer supported by current PyCUDA. According to the
package index, version 2020.1 is the last version to support 2.7:
https://pypi.org/project/pycuda/2020.1/
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#316 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABY375KK5QZZDOIGZPQPKWLUKBRMDANCNFSM5HHO2AWA>.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>.
|
Beta Was this translation helpful? Give feedback.
0 replies
-
In hindsight I suppose the answer is obvious: don't depend on the base
os provisioning for python, it stinks. Build a properly recent python
standalone for use with pycuda, pytorch, tensorflow, etc....
…On 11/2/21 5:33 PM, Andreas Klöckner wrote:
Python 2.7 is no longer supported by current PyCUDA. According to the
package index, version 2020.1 is the last version to support 2.7:
https://pypi.org/project/pycuda/2020.1/
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#316 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABY375KK5QZZDOIGZPQPKWLUKBRMDANCNFSM5HHO2AWA>.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>.
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Syntax errors (though they don't stop the install) for the following two files. I know I've missed the mako prereq, is this an artifact of that or something else I've borked?
Build/install system:
built by gcc 4.8.5 via gcc-4.8.5-44.el7.x86_64 from CentOS 7 Base repo)
roofs is readonly, install relocated to /opt/soft/cuda/2021.2
local system can not contact external services (no wget, curl, etc)
Steps taken:
Build is successful without significant warnings, just the usual C++{std} compliance, ISO compliance, and template-depricated messages. Full output attached. Ignore the mako errors, they happened because I derped the prereqs and the build environment per Customer dictate isn't allowed to talk outside of the clusterdomain. My question is only about the syntax errors below.
install.txt
On install everything is fine until bytecompiling reduction.py and tools.py:
And again when unrolling the egg into the target:
Followed by deps fetch failing because I borked the prereqs, also the build environment per Customer dictate is not allowed to talk outside of the clusterdomain (ignore this in the output, my question is about the syntax error above):
Beta Was this translation helpful? Give feedback.
All reactions