-
Notifications
You must be signed in to change notification settings - Fork 213
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WIP: Use Ubuntu 16.04 in GitHub actions via docker #890
base: master
Are you sure you want to change the base?
Conversation
.github/workflows/build_conda.yml
Outdated
- python-version: 3.9 | ||
torch: "1.7.0" | ||
torch: ["1.7.1"] | ||
# torch: ["1.6.0", "1.7.0", "1.7.1", "1.8.0", "1.8.1", "1.9.0", "1.9.1", "1.10"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will enable it after verification.
Woohoo! Thanks! |
@pzelasko conda create -n foo_env
conda activate foo_env
conda install -c k2-fsa -c pytorch k2=1.11 cpuonly pytorch=1.5.0
pip install dataclasses
pip install typing_extensions
python3 -m k2.version It prints the following for me:
The CUDA versions are still in building and will be available in a few hours. |
Thanks, that seems to be working!
|
It also works on a different system with an even older compiler / stdlib (g++ (GCC) 4.8.5 20150623 (Red Hat 4.8.5-28)), that is great. Thanks a lot! |
Now there are CUDA versions. Please have a try. |
Fixes #888 and #854
It seems to work.