RDP Software Configuration

From edegan.com
Jump to navigation Jump to search

All software installed on the RDP, as well as its configuration, should be recorded on this page!

Base installation

Ed installed the following during the build:

  • ActiveState Perl 5.26.3
  • ArcGIS Desktop (instructions at http://answers.library.georgetown.edu/faq/247307)
  • ArcGIS Reader (ESU196456098)
    • Python 2.7 (installed with ArcGIS in C:\Python27\ArcGIS10.6)
  • CUDA 10.1
  • Google Chrome
  • Komodo 9 IDE (licence is E:\mcnair\installs\Komodo-IDE-9-Windows-S19344C4830A.exe)
  • .NET 3.5 (install from media, see instructions [1])
  • Office 2019
  • STATA 15MP (24 core, network edition, 2 licenses)
  • SDC Platinum
  • Textpad 8
  • Visual Studio 2018 Community Edition
    • Anaconda 3 & Python 3.6 (installed with Microsoft Visual Studio, in C:\Program Files (x86)\Microsoft Visual Studio\Shared\)

Ed added:

  • miktex 2.9.7031
  • LyX 2.3.0
  • PyCharm 2019.1.2 (licensed until May 15th 2020)
  • Datagrip 2019.1.2 (licensed until May 15th 2020)
  • Matlab 2018a (instructions at http://uis.georgetown.edu/computers/purchase/software/matlab/install) was installed but then uninstalled before being activated. Matlab 2019a was then installed and activated with a license that should be valid until 31 March 2020.
  • Julia 1.1.1 (from https://julialang.org/downloads/, installed as admin to C:\Program Files\Julia-1.1.1), as well as Atom and Juno. Note that julia-client didn't install. The error message is in E:\installs\Julia-Client Install Error.txt. Also you need to "Edit System Environment Variables" and add C:\Program Files\Julia-1.1.1\bin.

Hiep installed the following:

  • Git windows 2.21.0
  • Git bash (to use git, no new path added)

Anne installed:

  • ChromeDriver 2.46.628402 (supports Chrome v71-73, did not add to system PATH variables, and instead stated direct path when executable was called in program)

Nancy installed:

  • Firefox
  • Geckodriver v0.24.0

Python and R

Ed installed additional new versions of:

  • Python 2.7
  • Anaconda 3 (with the add to path option)
  • R 3.5.3

Afterwards C:\Python27, C:\Python27\Lib and C:\Program Files\R\R-3.5.3\bin\x64 were added to the path (search "edit system environment variables"). C:\Python27\python.exe was copied to C:\Python27\python2.exe and C:\ProgramData\Anaconda3\python.exe was copied to python3.exe.

Users wanting to run python can therefore run any of the following:

python -- runs python 3.7 in C:\ProgramData\Anaconda3
python3 -- runs python 3.7 in C:\ProgramData\Anaconda3
python2 --  runs python 2.7 in C:\Python27
py -3 -- runs python 3.7 in C:\ProgramData\Anaconda3
py -2 --  runs python 2.7 in C:\Python27

For some reason this configuration stopped working. It seems that C:\ProgramData\Anaconda3 was removed from the path. It has now been added back. If you have an issue, please try closing and reopening your shell, or disconnecting and reconnecting your session.

For the old RDP configuration, see notes on Python on the RDP. There was also a GIT server on the old RDP, which hosted our Software Repository. All of the projects in the Software Repository Listing are on the E drive. We may install a new GIT server at some point.

Adding libraries

If you add a library or package to a programming language, for instance through pip or manually, record what you did here!

The following packages have been downloaded for python3 via pip

tensorflow 1.13.1
keras 2.2.4
open-cv 4.0
networkx 4.3
sklearn 0.20.1
numpy 1.16.2 (upgraded from 1.15.4)
selenium 3.141.0
splinter 0.10.0

Komodo IDE 9

Komodo IDE 9 is installed on the server. To get a license for your user account, go to E:\installs and run Komodo-IDE-9-Windows-S19344C4830A.exe. It should say OK, and then you're good to go.

By default Komodo IDE assumes that .py scripts are associated with Python2 not Python3. Most of our libraries and scripts are for Python 3. To change to the Python3 debugger, click the File Type icon (showing Python) at the bottom of the edit window (before the line and column number), and change it to Python3.

Note that Ed fixed the error documented on the ActiveState GitHub [2], by replacing all instances of 'async' with 'asynch' in C:\Program Files (x86)\ActiveState Komodo IDE 9\lib\support\dbgp\python3lib\dbgp\client.py to enable Komodo to run Python 3.

DataGrip

To use DataGrip on the RDP to work on a database on the dbase server, use a postgres database connection with the following settings:

  • Host: 192.168.2.201
  • Port: 5432
  • User: researcher
  • Password: hint:littleamount
  • Database: vcdb3 (or whatever)
  • URL: jdbc:postgresql://192.168.2.201:5432/vcdb3

Reference information is available from jetbrains.[3]