License installation¶
Follow these instructions to install a license for one or more of our products. Licenses for Accelerate, IOPro, or MKL Optimizations may be installed with the graphical Anaconda Navigator license manager, and licenses for these and all other products may be installed manually with your operating system.
Manual license installation¶
Before you start¶
- You should have installed conda and have received your license by email from your sales representative.
- Optionally your product(s) or a free trial may already be installed.
- Save the license file to your Downloads folder (or directory). Note the exact filename now to save a few steps.
- If you need any help, contact your sales rep or priority support.
About Anaconda licenses¶
Licenses for all Anaconda products are stored in the home folder in a hidden
subfolder named ~/.continuum
. The license directory is hidden to help
protect your license files from accidental changes or deletion. We explain how
to manage hidden directories for your operating system below.
TIP: The conda command conda info --license
shows you the location of your license files
and validates the licenses that are there.
Windows¶
Hidden folders appear in Windows Explorer only if the “show hidden files and folders” option is enabled. To bypass this issue, we use the Command Prompt window, and if it has not been created yet we make one. Then we copy and paste the license into the hidden license folder.
Open a Command Prompt window and look for the hidden folder. Click Start, in the search box type “command” and select Command prompt from the list. To see the files in your home folder, type “dir” and look for .continuum.
If you do not see a folder named .continuum, make a new one with
mkdir .continuum
Next, find the name of the license file. Use the “dir” command to show the files in your Downloads folder (or wherever you saved the license file):
dir Downloads
Copy the license file into the license directory. Use the “copy” command:
copy Downloads\license_bundle_1234.txt .continuum
NOTE: Replace “license_bundle_1234.txt” with the actual name of your license file.
This last step updates conda, installs and tests the licensed products you installed.
NOTE: If you previously installed a 30-day trial, you may choose to skip this step, but running it again is harmless.
In your Command Prompt window run:
conda update conda conda install your_package_name
NOTE: Replace “your_package_name” with the actual name of your package or product, such as “accelerate”. Follow the full installation instructions for the actual product.
Run your new packages or products:
Start Python (If you have multiple versions of Python on your computer, check to be sure the startup message says that it is Anaconda Python):
python
Import your newly licensed packages or products:
import your_package_name
Your license is now installed in Windows. If you have any questions or problems, please contact your sales rep or priority support for assistance.
OS X¶
Finder easily locates the hidden licenses folder, and if the folder has not been created yet we make one. Then we copy and paste the license into the hidden folder.
Look for the hidden folder. In the bottom row of icons, click the Finder icon, then from the top menu bar, select Go -> Go to folder. In the box that appears, type
~/.continuum
and click the Go Button.If the search results listing is empty, make a new hidden licenses folder by selecting File -> New Folder and typing
~/.continuum
.Next, copy the license file. Go to your Downloads folder (or wherever you saved the license file), highlight the license filename and copy the file: from the top file bar select Edit -> Copy File.
Return to the licenses directory: from the top menu bar, select Go -> Go to folder, in the box that appears type
~/.continuum
and click the Go Button.Paste in the license file: In the file listing, double-click the ~/.continuum folder to open the folder, then from the top menu bar, select Edit -> Paste Item.
This last step updates conda, installs and tests the licensed products you installed.
NOTE: If you previously installed a 30-day trial, you may choose to skip this step, but running it again is harmless.
Open your iTerm terminal and run:
conda update conda conda install your_package_name
NOTE: Replace “your_package_name” with the actual name of your package or product, such as “accelerate”. Follow the full installation instructions for the actual product.
Run your new packages or products:
Start Python (If you have multiple versions of Python on your computer, check to be sure the startup message says that it is Anaconda Python):
python
Import your newly licensed packages or products:
import your_package_name
Your license is now installed in OS X. If you have any questions or problems, please contact your sales rep or priority support for assistance.
Linux¶
We use the List-All command to display all directories including hidden ones, and if a license directory has not been created yet we make one. Then we copy the license into the hidden license directory.
Look for an existing hidden license directory. Open a terminal window. In your home directory, use the “list all” command:
ls -a
Look in the list for a licenses directory named.continuum
.If there is no directory named ”.continuum”, make a new licenses directory:
mkdir .continuum
Next, find the name of the license file. Go to your Downloads folder (or wherever you saved the license file):
cd Downloads
. Find the license filename with the list commandls
or if the list is long usels | more
.Highlight and copy the filename: from the top file bar select Edit -> Copy.
Copy the license file to the hidden directory: type
cp
, then Edit -> Paste to paste in the license filename, type~/.continuum
and click Enter:cp license_bundle_1234.txt ~/.continuum
NOTE: Replace “license_bundle_1234.txt” with the actual name of your license file.
This last step checks to be sure you have the latest version of conda, then installs and tests the licensed products you installed.
NOTE: If you previously installed a 30-day trial, you may choose to skip this step, but running it again is harmless.
In your terminal window, update conda and install your purchased packages or products:
conda update conda conda install your_package_name
NOTE: Replace “your_package_name” with the actual name of your package or product, such as “accelerate”. Follow the full installation instructions for the actual product.
Run your new packages or products:
Start Python (If you have multiple versions of Python on your computer, check to be sure the startup message says that it is Anaconda Python):
python
Import your newly licensed packages or products:
import your_package_name
Your license is now installed in Linux. If you have any questions or problems, please contact your sales rep or priority support for assistance.