instaling quiime 2 studio - error

Hey @Natasha_Palacios,

Thanks for your patience! I think I've found a resolution for this error, but I'd like you to try and re-install q2studio with the following modifications to our installation instructions to confirm that it works for you as well.

Go ahead and delete the q2studio files from your machine, if you haven't already done so. The easiest way to do this is just to navigate to the directory that these files are housed under and manually delete them (just using your machine's finder/file explorer).

Once that's complete, I'll go through the installation instructions and what will change:

  1. Activate your conda environment:
    conda activate qiime2-2021.4

  2. Download the source code for q2studio using one of the following options:

  • Web Browser:
    Download URL: https://codeload.github.com/qiime2/q2studio/zip/2021.4.0
    Save as: q2studio-2021.4.0.zip

  • wget:
    wget \
    -O "q2studio-2021.4.0.zip" \
    "https://codeload.github.com/qiime2/q2studio/zip/2021.4.0"

  • curl:
    curl -sL \
    "https://codeload.github.com/qiime2/q2studio/zip/2021.4.0" > \
    "q2studio-2021.4.0.zip"

  1. Next you'll unzip and navigate to the q2studio directory:
    unzip q2studio-2021.4.0.zip && rm q2studio-2021.4.0.zip
    cd q2studio-2021.4.0

  2. This is where the installation steps will be slightly modified - installing q2studio as a Python and NodeJS package:
    conda install gevent nodejs -c defaults --override-channels
    pip install .
    npm install --legacy-peer-deps && npm run build

The --legacy-peer-deps flag has been added here, which resolved the dependency conflicts on my machine when I tested this out - please let me know if this works for you as well!

  1. Pending a successful install, you should be able to run the following command and successfully launch q2studio:
    npm start

Please let me know if you are successful, or if you are still running into any installation errors - fingers crossed this will work for you!

1 Like