Skip to content

Commit

Permalink
fixed ubuntu-18.04 support
Browse files Browse the repository at this point in the history
  • Loading branch information
nushkovg committed Oct 18, 2018
1 parent 59f8272 commit e31341a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
11 changes: 11 additions & 0 deletions doc/maintaining/installing/install-from-source.rst
Expand Up @@ -79,6 +79,17 @@ a. Create a Python `virtual environment <http://www.virtualenv.org>`_

.. parsed-literal::
sudo mkdir -p |virtualenv|
sudo chown \`whoami\` |virtualenv|
virtualenv --no-site-packages |virtualenv|
|activate|
.. note::
If you are using ``python3`` and if you are having problems installing the
requirements using ``pip`` inside the virtual environment, explicitly
install ``python2.7`` inside the virtual environment.
sudo mkdir -p |virtualenv|
sudo chown \`whoami\` |virtualenv|
virtualenv --python=/usr/bin/python2.7 --no-site-packages |virtualenv|
Expand Down
4 changes: 2 additions & 2 deletions doc/maintaining/installing/solr.rst
Expand Up @@ -12,7 +12,7 @@ installed, we need to install and configure Solr.
server, but CKAN doesn't require Jetty - you can deploy Solr to another web
server, such as Tomcat, if that's convenient on your operating system.

.. important::
.. tip::

Do this step only if your system is using ``jetty9``.

Expand Down Expand Up @@ -105,4 +105,4 @@ installed, we need to install and configure Solr.
#. Finally, change the :ref:`solr_url` setting in your :ref:`config_file` (|production.ini|) to
point to your Solr server, for example::

solr_url=http://127.0.0.1:8983/solr
solr_url=http://127.0.0.1:8983/solr

0 comments on commit e31341a

Please sign in to comment.