development-environment

Why doesn't Android appear in Eclipses' preferences?

和自甴很熟 提交于 2020-05-12 11:16:14
问题 I've installed the Android Developer tools as per the official instructions. Why doesn't the tab appear in Windows->Preferences , as they said it should? 回答1: This won't fix your issue directly, but I suggest your take a look at the MOTODEV STUDIO for Android. Essentially, it's a customized Eclipse IDE with all the Android tools preinstalled and many more of their own tools for app validation. I find their tools usefull, especially the code snippets and the app validator. I believe you will

Windows Subsystem for Linux not recognizing JAVA_HOME Environmental Variable

空扰寡人 提交于 2020-05-10 08:47:14
问题 I'm trying to get WSL to recognize my windows installed environmental variable of JAVA_HOME. I attached of what I have in my bashrc and what I have in my windows environmental variables along with outputs from cmd and bash. What's at the end of my bashrc: export JAVA_HOME="/mnt/d/Program Files/Java/jdk-11.0.1" export PATH="/mnt/d/Program Files/Java/jdk-11.0.1/bin:$PATH" CMD INPUT/OUTPUT: C:\Users\jaall>javac --version javac 11.0.1 BASH INPUT/OUTPUT: myubuntu_name@DESKTOP-LUK3BII:~$ javac -

Windows Subsystem for Linux not recognizing JAVA_HOME Environmental Variable

主宰稳场 提交于 2020-05-10 08:46:10
问题 I'm trying to get WSL to recognize my windows installed environmental variable of JAVA_HOME. I attached of what I have in my bashrc and what I have in my windows environmental variables along with outputs from cmd and bash. What's at the end of my bashrc: export JAVA_HOME="/mnt/d/Program Files/Java/jdk-11.0.1" export PATH="/mnt/d/Program Files/Java/jdk-11.0.1/bin:$PATH" CMD INPUT/OUTPUT: C:\Users\jaall>javac --version javac 11.0.1 BASH INPUT/OUTPUT: myubuntu_name@DESKTOP-LUK3BII:~$ javac -

Windows Subsystem for Linux not recognizing JAVA_HOME Environmental Variable

妖精的绣舞 提交于 2020-05-10 08:46:09
问题 I'm trying to get WSL to recognize my windows installed environmental variable of JAVA_HOME. I attached of what I have in my bashrc and what I have in my windows environmental variables along with outputs from cmd and bash. What's at the end of my bashrc: export JAVA_HOME="/mnt/d/Program Files/Java/jdk-11.0.1" export PATH="/mnt/d/Program Files/Java/jdk-11.0.1/bin:$PATH" CMD INPUT/OUTPUT: C:\Users\jaall>javac --version javac 11.0.1 BASH INPUT/OUTPUT: myubuntu_name@DESKTOP-LUK3BII:~$ javac -

Windows Subsystem for Linux not recognizing JAVA_HOME Environmental Variable

拟墨画扇 提交于 2020-05-10 08:46:05
问题 I'm trying to get WSL to recognize my windows installed environmental variable of JAVA_HOME. I attached of what I have in my bashrc and what I have in my windows environmental variables along with outputs from cmd and bash. What's at the end of my bashrc: export JAVA_HOME="/mnt/d/Program Files/Java/jdk-11.0.1" export PATH="/mnt/d/Program Files/Java/jdk-11.0.1/bin:$PATH" CMD INPUT/OUTPUT: C:\Users\jaall>javac --version javac 11.0.1 BASH INPUT/OUTPUT: myubuntu_name@DESKTOP-LUK3BII:~$ javac -

Exporting a conda environment with local pip installs

半腔热情 提交于 2020-04-09 15:49:15
问题 I have exported my currently active environment with conda env export > environment.yml This is very convenient since it keeps track of both conda and pip installed packages. However, I have a few packages (shapely and basemap for example) installed locally by pip from a .whl file from Christoph Gohlke's compiled packages for Windows. When I try to recreate my environment by conda env create -f environment.yml pip returns with an error since it cannot find these packages in its index

flask production and development mode

ぐ巨炮叔叔 提交于 2020-03-18 03:34:15
问题 I have developed an application with flask, and I want to publish it for production, but I do not know how to make a separation between the production and development environment (database and code), have you documents to help me or code. I specify in the config.py file the two environment but I do not know how to do with. class DevelopmentConfig(Config): """ Development configurations """ DEBUG = True SQLALCHEMY_ECHO = True ASSETS_DEBUG = True DATABASE = 'teamprojet_db' print('THIS APP IS IN

Docker multiple environments

走远了吗. 提交于 2020-03-17 04:33:09
问题 I'm trying to wrap my head around Docker, but I'm having a hard time figuring it out. I tried to implement it in my small project (MERN stack), and I was thinking how do you distinct between development, (maybe staging), and production environments. I saw one example where they used 2 Docker files, and 2 docker-compose files, (each pair for one env, so Dockerfile + docker-compose.yml for prod, Dockerfile-dev + docker-compose-dev.yml for dev). But this just seems like a bit of an overkill for

Weblogic hot deployment during development (like WSSD/RAD)

旧城冷巷雨未停 提交于 2020-01-24 10:25:27
问题 All my previous projects were on websphere. I am right now in a team developing an application on weblogic. In Websphere development (WSSD/RAD) the server was more "integrated" with the IDE, so a build could automatically trigger an incremental deployment to the (development/local) server. Is such a setup possible in a weblogic environment? I googled for some weblogic plugins for eclipse, but I dont see this mentioned as a feature. What is the best setup for development on weblogic+eclipse,

How to generate files in a docker container for having the same owner as the host's user

拜拜、爱过 提交于 2020-01-23 16:27:09
问题 I use docker containers to get some development tasks done in my git repositories. The containers I use are built specifically for each project, that way each contributor only need docker CLI to get things done. The bad side is the container run as root, thus generated files are owned by root once the container stops, and that's bad.. I can't change the owner in the container before exiting because there isn't the required user in the container /etc/passwd file. I would create a user in the