alanderos91 / BioSimulator.jl

A stochastic simulation framework in Julia.
https://alanderos91.github.io/BioSimulator.jl/stable/
Other
47 stars 7 forks source link

Problem (and solution) when installing the package #3

Closed oliviaAB closed 6 years ago

oliviaAB commented 6 years ago

Hello, I am a new user of Julia, so maybe this is a beginner-mistake, but I would like to point out an issue that I encountered when installing BioSimulator (and how I solved it). Although the installation of the package using the provided command Pkg.clone("https://github.com/alanderos91/biosimulator.jl.git") was successful, I couldn't load the package using: using biosimulator

ERROR: ArgumentError: Module biosimulator not found in current path. Run Pkg.add("biosimulator") to install the biosimulator package.

even though Pkg.installed() showed biosimulator as installed. I also tried: using BioSimulator

ERROR: ArgumentError: Module BioSimulator not found in current path. Run Pkg.add("BioSimulator") to install the BioSimulator package.

It took me some time to figure out that I need to install the package specifying: Pkg.clone("https://github.com/alanderos91/biosimulator.jl.git", "BioSimulator")

I hope it will be helpful to someone :)