Found 172 Articles for AWS

Are You Ready For Cloud Computing?

Sharon Christine
Updated on 20-Jan-2020 06:25:21

207 Views

Cloud computing can be characterized as the utilization of high-end remote servers and other virtually hosted network services over the web to efficiently manage, process and store information in a highly versatile manner. Cloud computing makes it feasible for enterprises to utilize extremely computable network remote infrastructure and fully scalable atmosphere for mission critical complex business applications. Resources like virtual machines (VMs), storage units, shared utilities and intelligent applications are some of the computing resources provided by the cloud computing environment.Cloud Adoption TrendsCloud computing is emerging as a major industry trend in IT modernization and digital transformation strategies among enterprises. ... Read More

How to set up your python development environment on AWS?

Rajendra Dharmkar
Updated on 01-Oct-2019 06:45:55

428 Views

You need to have Python, pip, virtualenv, awswebcli and a SSH client installed to set up your Python Development Environment on AWS. You can follow instructions at http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/eb-cli3-install.html to install these.Once you have all those installed, you need to set up a virtual environment so that your global packages do not get polluted. Use the following command to set up a virtual environment:$ virtualenv -p python2.7 /tmp/hello-world Running virtualenv with interpreter /usr/bin/python2.7 New python executable in /tmp/hello-world/bin/python2.7 Also creating executable in /tmp/hello-world/bin/python Installing setuptools, pip...done.Once your virtual environment is ready, start it by running the activate script located in the ... Read More

Advertisements