7283915223e65af525bc8334e7593bbcac9943cf,distributions/windows/install.py,,,#,6
Before Change
VC_REDIST_URL = "https://aka.ms/vs/16/release/vc_redist.x64.exe"
if len(sys.argv) < 2:
sys.exit("Usage: ./{} install_dir".format(__file__.split(".")[0]))
def make_dir(d):
if not os.path.isdir(d):
After Change
GET_PIP_URL = "https://bootstrap.pypa.io/get-pip.py"
VC_REDIST_URL = "https://aka.ms/vs/16/release/vc_redist.x64.exe"
if len(sys.argv) < 2:
INSTALL_DIR = os.path.join(os.path.realpath(__file__).rstrip(__file__), "mindsdb")
else:
INSTALL_DIR = os.path.join(os.path.abspath(sys.argv[1]), "mindsdb")
def make_dir(d):
if not os.path.isdir(d):
os.makedirs(d)
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 5
Instances
Project Name: mindsdb/mindsdb
Commit Name: 7283915223e65af525bc8334e7593bbcac9943cf
Time: 2020-06-26
Author: wzzhz13@gmail.com
File Name: distributions/windows/install.py
Class Name:
Method Name:
Project Name: vatlab/SoS
Commit Name: e3b90cfc15d91e73a0a76c8b9c932fa4a7ac2ea1
Time: 2016-11-30
Author: ben.bog@gmail.com
File Name: test/run_tests.py
Class Name:
Method Name:
Project Name: mindsdb/mindsdb
Commit Name: aef9015979e220163385767345a1defeab68ab8f
Time: 2020-10-19
Author: wzzhz13@gmail.com
File Name: distributions/windows/install.py
Class Name:
Method Name: