File: quickstart_docker.rst

package info (click to toggle)
scipy 1.6.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 132,464 kB
  • sloc: python: 207,830; ansic: 92,105; fortran: 76,906; cpp: 68,145; javascript: 32,742; makefile: 422; pascal: 421; sh: 158
file content (176 lines) | stat: -rwxr-xr-x 7,674 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
:orphan:

.. _quickstart-docker:

=================================================
Development environment quickstart guide (Docker)
=================================================

This document shows how to start developing SciPy in a Docker container.
These instructions should be considered a work in progress.

Docker
------

Docker is a program for running Linux virtual machines within a host
operating system. According to the `Docker website`_:

 A Docker container image is a lightweight, standalone, executable package of
 software that includes everything needed to run an application: code, runtime,
 system tools, system libraries and settings.
 Container images become containers at runtime and in the case of Docker
 containers - images become containers when they run on Docker Engine.
 Available for both Linux and Windows-based applications, containerized
 software will always run the same, regardless of the infrastructure.

Docker makes setting up a development environment easy and reliable: we
provide a Docker image with suitable compilers already installed; you
use the Docker engine to execute the image as a container, add the latest
development version of SciPy and its build-time dependencies, and build
SciPy.
There are Docker hosts for several OS’s including:
macOS, Linux, and Windows. Please follow the appropriate
installation instructions for your operating system at `docs.docker.com`_.

.. note::

   If you have a version of an operating system that doesn't meet the
   requirements of Docker Desktop, such as Windows 10 Home,
   try `Docker Toolbox`_ .

Cloning SciPy
-------------

Before starting SciPy's Docker container, you should create a copy of the
SciPy source code on your computer. That way, you'll be able to access the
same files both from your native operating system and within the container.

*Note: below we will use* terminal window *as a
collective term that includes the Windows Command Prompt.*

#. Browse to the `SciPy repository on GitHub`_ and `create your own fork`_.
   You'll need to create a GitHub account if you don’t
   already have one.
#. Browse to your fork. Your fork will have a URL like
   https://github.com/andyfaff/scipy, except with your GitHub username
   in place of "andyfaff".
#. Click the big, green "Clone or download" button, and copy the ".git"
   URL to the clipboard. The URL will be the same as your fork’s URL,
   except it will end in ".git".
#. Create a folder for the SciPy source code in a convenient place on
   your computer. `Navigate`_ to it in the terminal window.
#. Enter the command ``git clone`` followed by your fork’s .git URL.
   Note that this creates in the terminal’s working directory a
   ``scipy`` folder containing the SciPy source code. This assumes that
   you have a ``git`` command line client that is available on your
   PATH; if not, you can follow these `instructions to install a git client`_.

Starting Docker
---------------

Instructions for getting started with Docker can be found `here`_. After
ensuring that Docker is working correctly, follow the instructions below to
start a Docker container for SciPy development. You'll follow the same
instructions each time you want to start the container, as changes made to a
container do not persist after you close it.

#. In a terminal window, change the directory (using the ``cd`` command)
   to root folder of the SciPy git repository, which contains the file
   ``setup.py``.

#. Ensure that Docker Desktop (or Docker Toolbox) is running, and start up the
   SciPy Docker container by entering the following command in a terminal
   window::

      docker run -it --rm -v $PWD/:/home/scipy scipy/scipy-dev /bin/bash

   This command starts (``run``) an interactive (``-it``) Docker container
   named ``scipy-dev`` (based on Ubuntu Bionic) from the ``scipy``
   `Docker Hub repository`_. When the Docker container starts, the
   ``scipy`` directory from the current directory of the host (``$PWD``) is
   made available in the container as ``/home/scipy``. The changes you make
   from the container to any of the files in that directory are also
   visible in the host, and vice versa.

#. You should now be in the container, with something like::

      root@468e1b9564e4:/#

   as a prompt.

#. Navigate to the SciPy source directory, which is shared with the host OS.

   ::

      cd /home/scipy

#. The container has both Python 3.6 and Python 3.7 available. To start
   using/building SciPy, we need to install some dependencies::

      pip3.7 install numpy cython pytest pybind11

   If you want to work with Python 3.6 use the ``pip3.6`` command instead.

#. Do an in-place build by entering::

      python3.7 setup.py build_ext --inplace

   This will compile the C,
   C++, and Fortran code that comes with SciPy. ``setup.py`` is a
   script in the root directory of SciPy, which is why you have to be
   in the SciPy root directory to call it. ``build_ext`` is a command
   defined in ``setup.py``, and ``--inplace`` is an option we’ll use to
   ensure that the compiling happens in the SciPy directory you already
   have rather than some other folder on your computer. If you want to
   work with Python 3.6, replace ``python3.7`` with ``python3.6``.

#. Test the build by entering::

      python3.7 runtests.py -v

   ``runtests.py`` is another script in the SciPy root directory. It runs a
   suite of tests that make sure SciPy is working as it should, and ``-v``
   activates the ``–verbose`` option to show all the test output.

#. If you want to :ref:`build the documentation <rendering-documentation>`
   or import SciPy from any directory other than the SciPy root, you should
   set up SciPy for development::

      python3.7 setup.py develop

From here, you can start a Python console (e.g., enter ``python3.7``) or
execute Python scripts from the command line (e.g.,
``python3.7 scriptname.py``).

You can make changes to files in the ``scipy`` directory in a text editor/IDE
in your host OS, and those changes will be reflected
within the container. Alternatively, you can use the ``vi``
text editor within the container to make changes. No changes made
within the container are retained when the container is exited; only
changes made to files/folders within mounted volumes are kept.
If you would like to contribute changes to the SciPy project, please see
:ref:`development-workflow`.

Finally, although Python and pip are pre-installed on the provided
Docker image, you are welcome to install a different
Python distribution and package manager, such as Anaconda. In this case, you
can adapt the instructions from :ref:`quickstart-ubuntu`, using the
container as you would any other Linux terminal. You've already cloned
SciPy on your computer, and git and all required compilers are already
installed, so you can simply skip the corresponding steps.

.. _here: https://docs.docker.com/get-started/
.. _Docker Hub repository: https://cloud.docker.com/repository/docker/scipy/scipy-dev
.. _Scipy repository on GitHub: https://github.com/scipy/scipy
.. _create your own fork: https://help.github.com/en/articles/fork-a-repo
.. _Navigate: https://blog.teamtreehouse.com/introduction-to-the-mac-os-x-command-line
.. _instructions to install a git client: https://git-scm.com/book/en/v2/Getting-Started-Installing-Git
.. _docs.docker.com: https://docs.docker.com/install/
.. _Docker website: https://www.docker.com/resources/what-container
.. _Docker Toolbox: https://docs.docker.com/toolbox/
.. |PYTHONPATH| replace:: ``PYTHONPATH``
.. _PYTHONPATH: https://docs.python.org/3/using/cmdline.html#environment-variables

.. |br| raw:: html

    <br>