Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Please first download this folder with the stellarNet python drivers. Johnny  These files were obtained through private communication with StellarNet; they are not freely available online.

Pandora Google Driver Link

DROPBOX - From the provider

Examples

Examples of how to acquire and plot a spectrum.

TBD

MacMini Setup

Install Requirements

Let’s install pyusb and lsusb

Code Block
languagebash
pip3 install pyusb
brew install libusb

Install Python Drivers

First, unzip the stellarnet driver library. Second, go to the unzipped folder. 

...

Code Block
languagebash
conda activate
python –version--version

The driver files for macOS are located in the stellarnet_driverLibs/ folder and have the .darwin.so extension. Choose the correct file based on your Python version:

...

Code Block
languagebash
echo 'export PYTHONPATH=$PYTHONPATH:/Users/estevespandora_ctrl/DownloadsDesktop/Python_StellarNet_Driver_2-6/stellarnet_driverLibs' >> ~/.zshrc
source ~/.zshrc

...

Code Block
languagebash
export PYTHONPATH=$PYTHONPATH:/Users/estevespandora_ctrl/DownloadsDesktop/Python_StellarNet_Driver_2-6/stellarnet_driverLibs

...

Run the demo python script to make sure your code is working properly.

Not setting up a python path

If you do not want to add the stellarnet path to your python you should add the python path before importing the module. 

...