forked from cuthbertLab/music21
-
Notifications
You must be signed in to change notification settings - Fork 0
/
installer.py
45 lines (32 loc) · 1.13 KB
/
installer.py
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
# -*- coding: utf-8 -*-
#-------------------------------------------------------------------------------
# Name: installer.py
# Purpose: install and configure
#
# Authors: Christopher Ariza
# Michael Scott Cuthbert
#
# Copyright: (c) 2009-2016 Michael Scott Cuthbert and the music21 Project
# License: LGPL or BSD
#-------------------------------------------------------------------------------
import os, sys
sys.stdout.write("Starting the music21 Configuration Assistant.\nModule loading could take a few moments, please wait...")
sys.stdout.flush()
if 'music21' in os.listdir(os.getcwd()):
p1 = os.path.join(os.getcwd(), 'music21')
if p1 not in sys.path:
sys.path.append(p1)
if 'music21' in os.listdir(p1):
p2 = os.path.join(p1, 'music21')
if p2 not in sys.path:
sys.path.append(os.path.join(p2, 'music21'))
run = False
try:
from music21 import configure
run = True
except ImportError:
pass
# need to be sure that we have the configure.py file found in the right place
if run:
ca = configure.ConfigurationAssistant()
ca.run()