So I kept fiddling around! Here is what I've done:
Since numpy was already installed, I switched to python2 environment and typed:
conda install -c bioconda numpy -f
Forcing it to (re)install numpy. That gave me the following response:
WARNING: The --force flag will be removed in a future conda release.
See 'conda install --help' for details about the --force-reinstall
and --clobber flags.
Collecting package metadata (current_repodata.json): done
Solving environment: done
## Package Plan ##
environment location: /home/FM/ktaube/miniconda3/envs/ipykernel_py2
added / updated specs:
- numpy
Proceed ([y]/n)? y
Preparing transaction: done
Verifying transaction: done
Executing transaction: done
I then did:
python
import numpy
And got no explicit response from the terminal (question: should I have? What am I looking for there?), so I assumed something happened, but again I just don't know how to tell.
Then, I entered the following:
structure.py -K 3 --input=/home/FM/ktaube/Downloads/plink1.09/masters-p1-vmac2 --output=./output --full --seed=100
And the terminal spits back the following:
File "<stdin>", line 1
structure.py -K 3 --input=/home/FM/ktaube/Downloads/plink1.09/masters-p1-vmac2 --output=./output --full --seed=100
^
SyntaxError: invalid syntax
I don't know if it is formatted in this response, but on the terminal that little carrot symbol (^) is hovering right below the number 3, for the
-K 3 portion. I hope that is helpful!