mod_wsgiインストール試行錯誤中

make distclean
./configure --with-apxs=/usr/bin/apxs --with-python=/usr/local/anaconda3/bin/python
$ LD_RUN_PATH=/usr/local/anaconda3/lib make

$ sudo make install
/usr/bin/apxs -i -S LIBEXECDIR=/usr/lib/apache2/modules -n 'mod_wsgi' src/server/mod_wsgi.la
/usr/share/apache2/build/instdso.sh SH_LIBTOOL='/usr/share/apr-1.0/build/libtool' src/server/mod_wsgi.la /usr/lib/apache2/modules
/usr/share/apr-1.0/build/libtool --mode=install install src/server/mod_wsgi.la /usr/lib/apache2/modules/
libtool: install: install src/server/.libs/mod_wsgi.so /usr/lib/apache2/modules/mod_wsgi.so
libtool: install: install src/server/.libs/mod_wsgi.lai /usr/lib/apache2/modules/mod_wsgi.la
libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin:/sbin" ldconfig -n /usr/lib/apache2/modules
----------------------------------------------------------------------
Libraries have been installed in:
   /usr/lib/apache2/modules

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the `-LLIBDIR'
flag during linking and do at least one of the following:
   - add LIBDIR to the `LD_LIBRARY_PATH' environment variable
     during execution
   - add LIBDIR to the `LD_RUN_PATH' environment variable
     during linking
   - use the `-Wl,-rpath -Wl,LIBDIR' linker flag
   - have your system administrator add LIBDIR to `/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
chmod 644 /usr/lib/apache2/modules/mod_wsgi.so

$ ldd /usr/lib/apache2/modules/mod_wsgi.so
linux-vdso.so.1 =>  (0x00007ffd70d3e000)
libpython3.4m.so.1.0 => /usr/local/anaconda3/lib/libpython3.4m.so.1.0 (0x00007f3450d10000)
libpthread.so.0 => /lib/x86_64-linux-gnu/libpthread.so.0 (0x00007f3450adb000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f3450711000)
libdl.so.2 => /lib/x86_64-linux-gnu/libdl.so.2 (0x00007f345050d000)
libutil.so.1 => /lib/x86_64-linux-gnu/libutil.so.1 (0x00007f345030a000)
libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007f3450000000)
/lib64/ld-linux-x86-64.so.2 (0x0000557ff1c67000)

$ sudo echo "LoadModule wsgi_module /usr/lib/apache2/modules/mod_wsgi.so" > /etc/apache2/mods-available/wsgi.load

$ echo WSGIPythonHome /usr/local/anaconda3 > /etc/apache2/mods-available/wsgi.conf
$ echo WSGIPythonPath /home/taro/MyDjangoSystem >> /etc/apache2/mods-available/wsgi.conf

$ sudo a2enmod wsgi