$ git clone https://github.com/singularityware/singularity.git
$ cd singularity
$ ./autogen.sh
$ ./configure --prefix=/usr/local
$ make
--
You received this message because you are subscribed to the Google Groups "singularity" group.
To unsubscribe from this group and stop receiving emails from it, send an email to singularity...@lbl.gov.
To view this discussion on the web visit https://groups.google.com/a/lbl.gov/d/msgid/singularity/aa1edf11-95ff-4384-a83e-631b2cfa299a%40lbl.gov.
To view this discussion on the web visit https://groups.google.com/a/lbl.gov/d/msgid/singularity/CAM%3Dpu%2BJjFBaWCiStiSyFVH75vjy4QTg1fzjfM2bfueAjoKc5PQ%40mail.gmail.com.
On Jun 6, 2019, at 12:25 PM, 'John Hearns' via singularity <singu...@lbl.gov> wrote:Hello Tasha. I know a bit about Vagrant, and am happy to help with that side of things.I know how you feel - starting out with what seems like a simple desire to run some software ends up with you becoming an expert in software libraries, Singularity etc.Well I have been doing that for more than 30 years!My advice - take up lion taming. If the lions are afraid of you, you have a career. When you get afraid of the lions.... Arggggh! Crunch! Roar!It is the same with software - don't let it get the upper hand.
To view this discussion on the web visit https://groups.google.com/a/lbl.gov/d/msgid/singularity/CAPqNE2UG0vBDgHiTyP%2B9iquw5ar7RxWyys5SznnSpTc1iwtG8A%40mail.gmail.com.
To view this discussion on the web visit https://groups.google.com/a/lbl.gov/d/msgid/singularity/DE4C6938-ABF2-4096-B59A-6979C5CAB82B%40njit.edu.
--
You received this message because you are subscribed to the Google Groups "singularity" group.
To unsubscribe from this group and stop receiving emails from it, send an email to singularity...@lbl.gov.
To view this discussion on the web visit https://groups.google.com/a/lbl.gov/d/msgid/singularity/aa1edf11-95ff-4384-a83e-631b2cfa299a%40lbl.gov.
vagrant@vagrant:~$ singularity version
3.2.1-1
Because Jupyter requires a much more current python distribution than what is provided in NRAO's CASA releases, a custom build of CASA is required. We distribute a DOCKER image containing a version of CASA which uses the most recent (I)python, matplotlib, etc. Note that this version of CASA can only be used from within Jupyter.
Installation is as simple as executing: docker pull penngwyn/jupytercasa
Alternatively there is also a SINGULARITY image which may be a bit easier to use, it can be downloaded by executing:
singularity pull --name jupyter-casa.simg shub://aardk/jupyter-casa:docker
The simplest way to start the Jupyter server is to execute:
singularity run jupyter-casa.simg
Unlike DOCKER, a SINGULARITY containter runs with UID of the current user (i.e. the user executing singularity run
). The home directory of the user on the local filesystem will also be accessible inside the container, but by default only the home directory is shared with the container. Therefore any symbolic links which point to locations outside of the home directory will not be valid inside the container.
Fortunately, it is fairly straigthforward to make your local filesystem accessible to the container using the -B option. For example to mount a directory called /data inside the container execute:
singularity run -B /data:$HOME/data jupyter-casa.simg
vagrant@vagrant:~$ singularity pull --name jupyter-casa.simg shub://aardk/jupyter-casa:docker
1.17 GiB / 1.17 GiB [=================================] 100.00% 22.19 MiB/s 53s
vagrant@vagrant:~$ ls
jupyter-casa.simg
vagrant@vagrant:~$ singularity run jupyter-casa.simg
Starting Jupyter
[I 16:53:49.621 NotebookApp] Writing notebook server cookie secret to /home/vagrant/.local/share/jupyter/runtime/notebook_cookie_secret
[I 16:53:49.865 NotebookApp] Serving notebooks from local directory: /home/vagrant
[I 16:53:49.865 NotebookApp] The Jupyter Notebook is running at:
[I 16:53:49.865 NotebookApp] http://localhost:8888/?token=f8274011440824c291d2dbd1001cab4703c4374aa5452a4d
[I 16:53:49.866 NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).
[W 16:53:49.869 NotebookApp] No web browser found: could not locate runnable browser.
[C 16:53:49.870 NotebookApp]
To access the notebook, open this file in a browser:
file:///home/vagrant/.local/share/jupyter/runtime/nbserver-1118-open.html
Or copy and paste one of these URLs:
http://localhost:8888/?token=f8274011440824c291d2dbd1001cab4703c4374aa5452a4d
Hey Tasha,I think you are looking at old installation instructions for Singularity - there hasn't been an autogen.sh in a while! The version 3 (and beyond) libraries are in GoLang, and there are special instructions for Mac/Windows to install. I think you find most of what you are looking for here: https://www.sylabs.io/guides/3.2/user-guide/installation.html?highlight=mac#install-on-windows-or-mac and feel free to ping the wisdom of the list if you run into trouble.Best,Vanessa
On Thu, Jun 6, 2019 at 11:39 AM 'Tashalee Billings' via singularity <singu...@lbl.gov> wrote:
Hi,--I am interested in trying to run CASA tasks/tools in jupyter notebook and it seems as though in order to do so I need to be able to use the container "Singularity". I tried logging into some virtual machine and use some software handler "vagrant" to install the container. I'm having some trouble with that too. So then I decided to try and install the container on my machine, which is a MacbookPro, by copying over the github repository and executing the shell scripts but there seems to be no shell scripts for me to execute. There is no "autogen.sh" so I can't configure anything.$ git clone https://github.com/singularityware/singularity.git
$ cd singularity
$ ./autogen.sh
$ ./configure --prefix=/usr/local
$ make
Thank you for your help,Tasha
You received this message because you are subscribed to the Google Groups "singularity" group.
To unsubscribe from this group and stop receiving emails from it, send an email to singu...@lbl.gov.
To view this discussion on the web visit https://groups.google.com/a/lbl.gov/d/msgid/singularity/aa1edf11-95ff-4384-a83e-631b2cfa299a%40lbl.gov.
On Thu, Jun 6, 2019 at 8:40 AM 'Tashalee Billings' via singularity <singu...@lbl.gov> wrote:
Hi,--I am interested in trying to run CASA tasks/tools in jupyter notebook and it seems as though in order to do so I need to be able to use the container "Singularity". I tried logging into some virtual machine and use some software handler "vagrant" to install the container. I'm having some trouble with that too. So then I decided to try and install the container on my machine, which is a MacbookPro, by copying over the github repository and executing the shell scripts but there seems to be no shell scripts for me to execute. There is no "autogen.sh" so I can't configure anything.$ git clone https://github.com/singularityware/singularity.git
$ cd singularity
$ ./autogen.sh
$ ./configure --prefix=/usr/local
$ make
Thank you for your help,Tasha
You received this message because you are subscribed to the Google Groups "singularity" group.
To unsubscribe from this group and stop receiving emails from it, send an email to singu...@lbl.gov.
To view this discussion on the web visit https://groups.google.com/a/lbl.gov/d/msgid/singularity/aa1edf11-95ff-4384-a83e-631b2cfa299a%40lbl.gov.
To unsubscribe from this group and stop receiving emails from it, send an email to singularity...@lbl.gov.
To view this discussion on the web visit https://groups.google.com/a/lbl.gov/d/msgid/singularity/89785fec-ed8e-493c-8ca0-be84870b7682%40lbl.gov.
To unsubscribe from this group and stop receiving emails from it, send an email to singu...@lbl.gov.
To view this discussion on the web visit https://groups.google.com/a/lbl.gov/d/msgid/singularity/aa1edf11-95ff-4384-a83e-631b2cfa299a%40lbl.gov.
----
You received this message because you are subscribed to the Google Groups "singularity" group.
To unsubscribe from this group and stop receiving emails from it, send an email to singu...@lbl.gov.
To view this discussion on the web visit https://groups.google.com/a/lbl.gov/d/msgid/singularity/CAM%3Dpu%2BJjFBaWCiStiSyFVH75vjy4QTg1fzjfM2bfueAjoKc5PQ%40mail.gmail.com.
--
You received this message because you are subscribed to the Google Groups "singularity" group.
To unsubscribe from this group and stop receiving emails from it, send an email to singu...@lbl.gov.
To view this discussion on the web visit https://groups.google.com/a/lbl.gov/d/msgid/singularity/CAPqNE2UG0vBDgHiTyP%2B9iquw5ar7RxWyys5SznnSpTc1iwtG8A%40mail.gmail.com.
--
You received this message because you are subscribed to the Google Groups "singularity" group.
To unsubscribe from this group and stop receiving emails from it, send an email to singu...@lbl.gov.
Hello Tasha. I know a bit about Vagrant, and am happy to help with that side of things.I know how you feel - starting out with what seems like a simple desire to run some software ends up with you becoming an expert in software libraries, Singularity etc.Well I have been doing that for more than 30 years!My advice - take up lion taming. If the lions are afraid of you, you have a career. When you get afraid of the lions.... Arggggh! Crunch! Roar!It is the same with software - don't let it get the upper hand.
On Thu, 6 Jun 2019 at 16:55, v <vso...@gmail.com> wrote:
Hey Tasha,I think you are looking at old installation instructions for Singularity - there hasn't been an autogen.sh in a while! The version 3 (and beyond) libraries are in GoLang, and there are special instructions for Mac/Windows to install. I think you find most of what you are looking for here: https://www.sylabs.io/guides/3.2/user-guide/installation.html?highlight=mac#install-on-windows-or-mac and feel free to ping the wisdom of the list if you run into trouble.Best,Vanessa
On Thu, Jun 6, 2019 at 11:39 AM 'Tashalee Billings' via singularity <singu...@lbl.gov> wrote:
Hi,--I am interested in trying to run CASA tasks/tools in jupyter notebook and it seems as though in order to do so I need to be able to use the container "Singularity". I tried logging into some virtual machine and use some software handler "vagrant" to install the container. I'm having some trouble with that too. So then I decided to try and install the container on my machine, which is a MacbookPro, by copying over the github repository and executing the shell scripts but there seems to be no shell scripts for me to execute. There is no "autogen.sh" so I can't configure anything.$ git clone https://github.com/singularityware/singularity.git
$ cd singularity
$ ./autogen.sh
$ ./configure --prefix=/usr/local
$ make
Thank you for your help,Tasha
You received this message because you are subscribed to the Google Groups "singularity" group.
To unsubscribe from this group and stop receiving emails from it, send an email to singu...@lbl.gov.
To view this discussion on the web visit https://groups.google.com/a/lbl.gov/d/msgid/singularity/aa1edf11-95ff-4384-a83e-631b2cfa299a%40lbl.gov.
--
--
You received this message because you are subscribed to the Google Groups "singularity" group.
To unsubscribe from this group and stop receiving emails from it, send an email to singu...@lbl.gov.
To view this discussion on the web visit https://groups.google.com/a/lbl.gov/d/msgid/singularity/89785fec-ed8e-493c-8ca0-be84870b7682%40lbl.gov.
To unsubscribe from this group and stop receiving emails from it, send an email to singularity...@lbl.gov.
To view this discussion on the web visit https://groups.google.com/a/lbl.gov/d/msgid/singularity/75437d80-4f1e-48d4-b964-5d478eb81cf8%40lbl.gov.