JGCRI / plutus

https://jgcri.github.io/plutus/
BSD 2-Clause "Simplified" License
5 stars 4 forks source link

Installation Challenges #13

Closed samgdotson closed 3 years ago

samgdotson commented 3 years ago

I attempted installing plutus on a fresh installation of Ubuntu 20.04 and ran into two obstacles:

  1. install.packages('devtools') failed because it required additional libraries. I resolved the issue using
    sudo apt install build-essential libcurl4-gnutls-dev libxml2-dev libssl-dev
  2. install.packages('JGCRI/plutus') failed because it could not find xml2 (i.e. the XML dependency was failing). I resolved this by using
    sudo apt-get install libxml2-dev

    I'm not sure why I had to install libxml2-dev twice, but I was able to install plutus after that.

This issue can be closed when:

mengqi-z commented 3 years ago

Hi @samgdotson , thank you for finding out the issues of installing plutus on Linux. I updated README to include instructions on installing additional libraries on Linux.

samgdotson commented 3 years ago

Thanks!