发表日期: 2021-06-06 09:30:25 浏览次数:128
宣汉微信公众号开发【宣汉网络推广】宣汉建站、宣汉网站维护、宣汉网页制作、宣汉微信小程序代运营公司

宣汉县隶属于四川省达州市,位于四川盆地东北大巴山南麓,地处渝川陕鄂结合部,是达州卫星城市,介于东经107°22′~108°32′,北纬31°06′~31°49′之间,县城距达州市区32公里、达州机场42公里,襄渝铁路和渝陕高速公路、达万高速公路、210国道穿境而过。 [1]
宣汉县幅员面积4271平方公里,辖31个镇、19个乡、4个民族乡;2019年,户籍总人口127.82 万(常住人口102.3万),2019年,宣汉县实现地区生产总值3699090万元,人均地区生产总值36159元。 [2] 属中亚热带湿润季风气候区,无霜期长。境内地形复杂、山势逶迤,由东北向西南倾斜绵延。
宣汉县人文厚重。巴风土韵源远流长,境内罗家坝遗址,是巴文化的发源地;土家民俗风情独具,薅草锣鼓入选第一批国家级非物质文化遗产名录,是四川省唯一的土家族聚居地;红色文化底蕴深厚,创造了“一县成军(红三十三军)”的传奇,孕育了老一辈无产阶级革命家王维舟和新中国10位将军。 [1]
宣汉资源富集;拥有巴山大峡谷,洋烈水乡等3个国家4A级旅游景区。矿产资源中天然气预计储量1.5万亿方,年拥有150亿立方的天然气产能和285万吨的硫磺产量,煤炭储量1.6亿吨,富锂钾卤水储量20.9亿方;农副产品资源丰富,是全国黄牛、木本药材、速丰林、茶叶生产基地和蜀宣花牛种源基地。 [1]
2020年2月,四川省人民政府同意宣汉县退出贫困县。 [3] 2020年6月,宣汉成功创建为“四川省首批全域旅游示范区”。 [4] 2020年9月22日,荣获2019年度四川省粮食生产“丰收杯”。
If you see an EACCES error when you try to install a package globally, read this chapter. This error can often be avoided if you change the directory where npm is installed. To do this, either:
Reinstall npm with a version manager (recommended),
or
Change npm's default directory manually.
This is the best way to avoid permissions issues. This is described in Chapter 2. You do not need to remove your current version of npm or Node.js before installing a node version manager.
This section does not apply to Microsoft Windows. This chapter will be updated to address Windows in the near future.
To minimize the chance of permissions errors, you can configure npm to use a different directory. In this example, it will be a hidden directory on your home folder.
Back-up your computer before you start.
Make a directory for global installations:
mkdir ~/.npm-global
Configure npm to use the new directory path:
npm config set prefix '~/.npm-global'
Open or create a ~/.profile file and add this line:
export PATH=~/.npm-global/bin:$PATH
Back on the command line, update your system variables:
source ~/.profile
Test: Download a package globally without using sudo.
npm install -g jshint
Instead of steps 2-4, you can use the corresponding ENV variable (e.g. if you don't want to modify ~/.profile):
NPM_CONFIG_PREFIX=~/.npm-global
If you are using npm version 5.2 or greater, explore npx as an alternative way to run global commands, especially if you just need a command occassionally. Click here to read an excellent article about npx.