Bureaucrats, cc_docs_admin, cc_staff
2,320
edits
(Created page with "A virtual environment offers you all the functionality which you need to use Python on our clusters. Here is how to convert...") |
(Created page with "# List the dependencies (requirements) of the application you want to use. # Find which dependencies are Python modules and which are libraries provided by Anaconda. For examp...") |
||
Line 20: | Line 20: | ||
A [[Python#Creating_and_using_a_virtual_environment|virtual environment]] offers you all the functionality which you need to use Python on our clusters. Here is how to convert to the use of virtual environments if you use Anaconda on your personal computer: | A [[Python#Creating_and_using_a_virtual_environment|virtual environment]] offers you all the functionality which you need to use Python on our clusters. Here is how to convert to the use of virtual environments if you use Anaconda on your personal computer: | ||
# | # List the dependencies (requirements) of the application you want to use. | ||
# | # Find which dependencies are Python modules and which are libraries provided by Anaconda. For example, CUDA and CuDNN are libraries which are available on Anaconda Cloud but which you should not install yourself on our clusters - they are already installed. | ||
# | # Remove from the list of dependencies everything which is not a Python module (e.g. <tt>cudatoolkit</tt> and <tt>cudnn</tt>). | ||
# | # Use a [[Python#Creating_and_using_a_virtual_environment|virtual environment]] in which you will install your dependencies. | ||
Votre application devrait fonctionner. Si ce n'est pas le cas, n'hésitez pas à contacter notre soutien technique. | Votre application devrait fonctionner. Si ce n'est pas le cas, n'hésitez pas à contacter notre soutien technique. |