Displaying BioPython help textΒΆ
After installing a package, you can confirm that the package was installed correctly by opening a Jupyter Notebook in that environment, importing the package and displaying its help text. In this example we will use the BioPython package.
To install the BioPython package, follow the instructions in Managing packages.
To open a Jupyter Notebook, follow the instructions in navigator-use-environment.
In the Jupyter Notebook, click the New button and select your installed Python version.
Copy and paste the following code into the first cell:
import Bio help(Bio)
To run the code, in the menu bar, click Cell then select Run Cells, or use the keyboard shortcut Ctrl-Enter.
The BioPython help text is displayed.