我的公司服务器安装Redhat 6,默认使用Python 2.6。客户使用Python 3.4向我发送了一些示例代码,但我无权安装Python 3.4
使用Java,我可以将jdk安装文件夹从另一台Linux服务器复制到我的,而无需安装它。我需要做的唯一改变是相应地改变你的JAVA_HOME和PATH变量
如何以这种方式应用于Python?
答案 0 :(得分:5)
转到python.org并下载源代码,例如" Python-3.4.6.tar.xz",然后解压缩,然后转到目录,运行此脚本:
@model List<smartpond.Models.AssetTrackerViewModel>
@{
Layout = "~/Views/Shared/_Layout.cshtml";
}
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<style>
#map {
height: 100%;
}
html, body {
height: 100%;
margin: 0;
padding: 0;
}
</style>
<div class="container">
<div id="map"></div>
</div>
@section scripts{
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDci4vYApOxVdKqwlpXSv9h77AcWbNuzmQ&callback=initMap">
</script>
@section scripts{
<script>
function initMap() {
var myLatLng = { lat: 22.825261, lng: 86.163366 };//Bharat Seva Ashram
var map = new google.maps.Map(document.getElementById('map'), {
zoom: 14,
center: myLatLng
});
var marker = new google.maps.Marker({
position: myLatLng,
map: map,
title: 'Hello World!'
});
}
</script>
}
这里也是一个shell脚本,您可以运行它,然后您将获得您的python-3.4。
sh configure; make;
最后,您可以通过#!/bin/sh
# how-to-get-python-3.4.sh
wget https://www.python.org/ftp/python/3.4.6/Python-3.4.6.tar.xz
tar xvfJ Python-3.4.6.tar.xz
cd Python-3.4.6
sh configure
make
命令运行python-3.4。
这是输出:
./python