Skip to content

Commit

Permalink
Merge pull request #16 from johnpeach/master
Browse files Browse the repository at this point in the history
Update article 001
  • Loading branch information
rnahar25 authored Jul 2, 2021
2 parents 6685714 + 555b875 commit b51a9b8
Showing 1 changed file with 24 additions and 27 deletions.
51 changes: 24 additions & 27 deletions knowledge_base/001_No_Module_Named_ADS_Error_Fix.md
Original file line number Diff line number Diff line change
@@ -1,30 +1,27 @@
> # "No module name ads" Error
### This error message is commonly seen when either of these two scenarios happen:

1. Make sure you have a conda environment installed.
Steps for this:

- click on the plus sign in the left-hand menu bar
- click environment explore
- choose a conda pack, e.g. general machine learning for cpu
- click install
- copy installation command shown on the card
- run installation command in terminal
- activate installed environment, e.g. `conda activate /home/datascience/conda/mlcpuv1`
- open a notebook and choose the installed environment as kernel
- `import ads`

More information here: https://blogs.oracle.com/ai-and-datascience/post/new-conda-environment-feature-available-in-oracle-cloud-infrastructure-data-science

2. Confirm you have Internet access from the notebook session

- Try `curl oracle.com` in terminal to see if you have Internet access to service gateway connection

- Ensure that your VCN and subnet are configured to route traffic through either the NAT gateway or the service gateway so that the conda environments can be listed

- Connectivity is required in order to use Conda Environments. Choose a different VCN/Subnet for your Notebook Session or see our documentation for [automated](https://docs.oracle.com/en-us/iaas/data-science/using/orm-configure-tenancy.htm) and [manual](https://docs.oracle.com/en-us/iaas/data-science/using/configure-tenancy.htm#create-vcn) instructions in how to configure your OCI Virtual Network
# "No module name ads" Error

## This error message is commonly seen when either of these two scenarios happens:

1. Ensure that a conda environment is installed. If you do not have one installed, follow these steps to install one:
1. Select File -> New Launcher to open the Launcher tab.
1. Click Environment Explorer.
1. Review the available conda environments and determine which one you would like to install. Ensure that the conda environment contains the ADS library. It will be listed along with the other key libraries that are installed. If you are not sure which conda environment to install, we suggest you use General Machine Learning for CPUs.
1. Select the Install tab in the environment card.
1. Copy the installation command shown on the card.
1. Select File -> New -> Terminal to open a terminal tab.
1. Paste the installation command into the terminal tab and run the command.
1. Select File -> New -> Notebook to open a new notebook.
1. In the Select Kernel dialog choose the conda environment that you installed. If it does not appear wait a few seconds and try again.
1. In a cell type `import ads` and execute the cell. ADS should now be available.
1. For more information see the blog post [New Conda Environment feature available in Oracle Cloud Infrastructure Data Science](https://blogs.oracle.com/ai-and-datascience/post/new-conda-environment-feature-available-in-oracle-cloud-infrastructure-data-science).
1. Confirm that you have Internet access from the notebook session. Follow these steps to confirm this.
1. Select File -> New -> Terminal to open a terminal tab.
1. Run the command `curl -s oracle.com > /dev/null | echo $?`.
1. If `0` is returned then you have Internet access. Any other value suggests that you do not have internet access.

- Ensure that your VCN and subnet are configured to route traffic through either a NAT gateway or service gateway. The most common cause of this is that the public VCN was selected when configuring the notebook session. The private VCN should have been selected. This may not be the case for your network configuration but for most configurations, this is the issue. To change the VCN, go to the Notebook Sessions page in the OCI console and select Deactivate. When the notebook session has deactivated, activate it by clicking the Activate button. At this time a dialog will appear and you can change the VCN.
- Connectivity is required in order to use conda environments. Choose a different VCN/Subnet for your Notebook Session or see our documentation for [automated](https://docs.oracle.com/en-us/iaas/data-science/using/orm-configure-tenancy.htm) and [manual](https://docs.oracle.com/en-us/iaas/data-science/using/configure-tenancy.htm#create-vcn) instructions in how to configure your OCI Virtual Network

___

*Oracle Cloud Infrastructure (OCI) Advanced Data Science*
*Oracle Cloud Infrastructure (OCI)*

0 comments on commit b51a9b8

Please sign in to comment.